这是什么原因,是哪个控件未得到tag?还是窗体的问题?
private void Form1_Resize(object sender, EventArgs e)
{
float newX = this.Width / X;//获取当前宽度与初始宽度的比例
float newY = this.Height / Y;//获取当前高度与初始高度的比例
Class1.setControls(newX, newY, this);
//this.Text = "窗体宽:" + this.Width.ToString() + " 窗体高:" + this.Height.ToString();//窗体标题栏
}
public static void setControls(float newX, float newY, Control cons)
{
//遍历窗体中的控件,重新设置控件的值
foreach (Control con in cons.Controls)
{
try
{
string[] mytag = con.Tag.ToString().Split(new char[] { ':' });//获取控件的Tag属性值,并分割后存储字符串数组
float a = Convert.ToSingle(mytag[0]) * newX;//根据窗体缩放比例确定控件的值,宽度//89*300
con.Width = (int)(a);//宽度
a = Convert.ToSingle(mytag[1]) * newY;//根据窗体缩放比例确定控件的值,高度//12*300
con.Height = (int)(a);//高度
a = Convert.ToSingle(mytag[2]) * newX;//根据窗体缩放比例确定控件的值,左边距离//
con.Left = (int)(a);//左边距离
a = Convert.ToSingle(mytag[3]) * newY;//根据窗体缩放比例确定控件的值,上边缘距离
con.Top = (int)(a);//上边缘距离
Single currentSize = Convert.ToSingle(mytag[4]) * newY;//根据窗体缩放比例确定控件的值,字体大小
con.Font = new Font(con.Font.Name, currentSize, con.Font.Style, con.Font.Unit);//字体大小
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
}
}
碰到这种问题毫无头绪,该怎么解决?