发布网友 发布时间:2022-04-23 06:38
共1个回答
热心网友 时间:2022-06-16 18:30
获取当前屏幕分辨率->获取当前窗口大小->计算如果居中的话当前窗口的位置->给当前窗口位置赋值方法挺笨的,不过可以实现,代码如下,测试通过。intheight=System.Windows.Forms.SystemInformation.WorkingArea.Height;intwidth=System.Windows.Forms.SystemInformation.WorkingArea.Width;intformheight=this.Size.Height;intformwidth=this.Size.Width;intnewformx=width/2-formwidth/2;intnewformy=height/2-formheight/2;this.SetDesktopLocation(newformx,newformy);