天天看點

winfrom怎麼做自适應_winform 控件大小随着窗體自适應(示例代碼)

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事件執行即可。