winfrom怎么做自适应_winform 控件大小随着窗体自适应(示例代码)

本文介绍了三种方法使WinForm应用中的控件大小随着窗体尺寸变化而自适应。通过获取控件的原始信息,计算缩放比例,并在窗体大小改变时调整控件的位置和尺寸,实现控件的自适应布局。同时,注意到在非开发环境下改变分辨率可能导致问题,可通过在初始化时屏蔽sizeChanged事件来解决这个问题。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

3个方法:

#region 改变控件大小

//获取控件原始信息

protected void GetAllInitInfo(Control ctrlContainer)

{

//int tempWidth = Screen.PrimaryScreen.Bounds.Width / 5 * 4;

//int tempHeight = Screen.PrimaryScreen.Bounds.Height / 5 * 4;

if (ctrlContainer.Parent == this)//获取窗体的高度和宽度

{

formWidth = Convert.ToDouble(ctrlContainer.Width);

formHeight = Convert.ToDouble(ctrlContainer.Height);

}

foreach (Control item in ctrlContainer.Controls)

{

if (item.Name.Trim() != "")

{

//添加信息:键值:控件名,内容:据左边距离,距顶部距离,控件宽度,控件高度,控件字体。

ControlsInfo.Add(item.Name, (item.Left + item.Width / 2) + "," + (item.Top + item.Height / 2) + "," + item.Width + "," + item.Height + "," + item.Font.Size);

}

if ((item as UserControl) == null && item.Controls.Count > 0)

{

GetAllInitInfo(item);

}

}

}

//获取窗体缩放比例

private void ControlsChangeInit(Control ctrlContainer)

{

//scaleX = (double)4 / 5;

//scaleY = (double)4 / 5;

scaleX = (Convert.ToDouble(ctrlContainer.Width) / formWidth);

scaleY = (Convert.ToDouble(ctrlContainer.Height) / formHeight);

}

//窗体改变时修改控件大小

private void ControlsChange(Control ctrlContainer)

{

double[] pos = new double[5];//pos数组保存当前控件中心Left,Top,控件Width,控件Height,控件字体Size

foreach (Control item in ctrlContainer.Controls)//遍历控件

{

if (item.Name.Trim() != "")//如果控件名不是空,则执行

{

if ((item as UserControl) == null && item.Controls.Count > 0)//如果不是自定义控件

{

ControlsChange(item);//循环执行

}

string[] strs = ControlsInfo[item.Name].Split(‘,‘);//从字典中查出的数据,以‘,’分割成字符串组

for (int i = 0; i < 5; i++)

{

pos[i] = Convert.ToDouble(strs[i]);//添加到临时数组

}

double itemWidth = pos[2] * scaleX; //计算控件宽度,double类型

double itemHeight = pos[3] * scaleY; //计算控件高度

item.Left = Convert.ToInt32(pos[0] * scaleX - itemWidth / 2);//计算控件距离左边距离

item.Top = Convert.ToInt32(pos[1] * scaleY - itemHeight / 2);//计算控件距离顶部距离

item.Width = Convert.ToInt32(itemWidth);//控件宽度,int类型

item.Height = Convert.ToInt32(itemHeight);//控件高度

item.Font = new Font(item.Font.Name, float.Parse((pos[4] * Math.Min(scaleX, scaleY)).ToString()));//字体

}

}

}

private void FormNewInfraredPicture_SizeChanged(object sender, EventArgs e)

{

if (sizeBool2)

{

if (ControlsInfo.Count > 0)//如果字典中有数据,即窗体改变

{

ControlsChangeInit(this.Controls[0]);//表示pannel控件

ControlsChange(this.Controls[0]);

}

}

//if (ControlsInfo.Count > 0)//如果字典中有数据,即窗体改变

//{

// ControlsChangeInit(this.Controls[0]);//表示pannel控件

// ControlsChange(this.Controls[0]);

//}

}

#endregion

其中是窗体sizeChanged事件调用和构造函数开始记录控件初始化信息;

注:在非开发环境的电脑上会出现改变分辨率出粗情况,

看其执行顺序会发现,改变分辨率情况下,窗口自动改变,程序运行sizechanged事件会出错,

仅需在初始化窗体时候屏蔽sizeChanged事件执行即可。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值