码迷,mamicode.com
首页 > 其他好文 > 详细

窗口居中

时间:2019-04-15 16:03:25      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:desktop   size   elf   def   geo   height   screen   一半   就是   

def center(self):
screen = QDesktopWidget().screenGeometry()
size = self.geometry()
self.move((screen.width() - size.width()) / 2, (screen.height() - size.height()) / 2)

获取屏幕尺寸,窗口尺寸,一半就是中间

窗口居中

标签:desktop   size   elf   def   geo   height   screen   一半   就是   

原文地址:https://www.cnblogs.com/lshaoyu/p/10710928.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!