Qt中怎么控制主窗口在屏幕上的显示位置
1个回答
展开全部
获取当前屏幕分辨率->获取当前窗口大小->计算如果居中的话当前窗口的位置->给当前窗口位置赋值方法挺笨的,不过可以实现,代码如下,测试通过。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);
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询