111,093
社区成员




Point PlblSpecialText = new Point(821 + move_w + 228 + move_h);
this.lblSpecialText.Size = new Size(PlblSpecialText);
static int move_w;
static int move_h;
错误 2 无法将类型“System.Drawing.Point”隐式转换为“System.Drawing.Size”。存在一个显式转换(是否缺少强制转换?) E:\三点照合\2011-7-new\Source\CS_Source\显示屏程序\FS0501\FS0501\frmStatistics.cs 123 40 FS0501
private void frmStatistics_SizeChanged(object sender, EventArgs e)
{
this.lblSpecialText.Size = new Point(821 + move_l,this.lblSpecialText.Height);
}
private void frmStatistics_SizeChanged(object sender, EventArgs e)
{
this.lblSpecialText.Width = 821 + move_l;
this.Refresh();
}