c# winform设置控件居中

 

  重写OnResize(EventArgs e)方法,通过计算,重新定位控件的位置。下面以picbox为例:

 

  protected override void OnResize(EventArgs e)
        {
            base.OnResize(e);
            int x = (int)(0.5 * (this.Width - picbox.Width));
            int y = (int)(0.5 * (this.Height - picbox.Height));
            picbox.Location = new System.Drawing.Point(x, y);
        }

  

 

c# winform设置控件居中

上一篇:分享一个自己封装的WIN SOCKET类


下一篇:nginx在windows中基本操作