C# winform 自适应
public void SetTag(Control cons)
{
foreach (Control con in cons.Controls)
{
con.Tag = con.Width + ";" + con.Height + ";" + con.Left + ";" + con.Top + ";" + con.Font.Size;
if (con.Controls.Count > 0)
{
SetTag(con);
}
}
}
public void SetControls(float newx, float newy,Control cons)
{
foreach (control con in cons.controls)
{
if (con.tag != null)
{
string[] mytag = con.tag.tostring().split(';');
con.width = convert.toint32(convert.tosingle(mytag[0]) * newx);//宽度
con.height = convert.toint32(convert.tosingle(mytag[1]) * newy);//高度
con.left = convert.toint32(convert.tosingle(mytag[2]) * newx);//左边距
con.top = convert.toint32(convert.tosingle(mytag[3]) * newy);//右边距
//con.font= new font(con.font.name, convert.tosingle(mytag[4]) * newy, con.font.style, con.font.unit);
if (con.controls.count > 0)
{
setcontrols(newx, newy, cons);
}
}
}
}
C#.net. WPF.core 技术交流群 群号205082182,欢迎加入,也可以直接点击左侧和下方的"加入QQ群",直接加入
浙公网安备 33010602011771号