winform groupbox控件放到窗体中间位置

1、 在Form中放一个控件,让其在启动时始终居中

int gLeft = this.Width / 2 - groupControl1.Width / 2;

int gTop = this.Height / 2 - groupControl1.Height / 2;

groupControl1.Location = new Point(gLeft, gTop);、

2、在设计界面时,先把groupbox控件放到窗体中间位置,然后anchor属性 设置为none 即可

上一篇:Hadoop2.3.0具体安装过程


下一篇:c# 设置控件的前景颜色和背景颜色