------解决方案-------------------- 你根据分辨率的来显示你的界面。 int varwidth = System.Windows.Forms.Screen.PrimaryScreen.Bounds.Width; int varheight = System.Windows.Forms.Screen.PrimaryScreen.Bounds.Height;
if(varwidth = 1024 && varheight = 768) {
}
if(varwidth = 800&& varheight = 600) {
}
------解决方案--------------------
------解决方案-------------------- 判断分辨率 在不同分辨率下调整控件坐标 窗体加载resize时改变坐标 DOCK int w= Screen.PrimaryScreen.Bounds.Width; int h= Screen.PrimaryScreen.Bounds.Height;