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

pyqt练习x6.1在中间

时间:2015-07-16 19:33:19      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:

# -*- coding: cp936 -*-

import sys

from PyQt4 import QtGui

class Center(QtGui.QWidget):

    def __init__(self,parent=None):

        QtGui.QWidget.__init__(self,parent)

        self.setWindowTitle(u‘在中间‘)

        self.resize(250,150)

        self.center()

    def center(self):

        screen=QtGui.QDesktopWidget().screenGeometry()

        size=self.geometry()

        self.move((screen.width()-size.width())/2,

                  (screen.height()-size.height())/2)

 

app=QtGui.QApplication(sys.argv)

qb=Center()

qb.show()

sys.exit(app.exec_())

    IMG技术分享

pyqt练习x6.1在中间

标签:

原文地址:http://www.cnblogs.com/mhxy13867806343/p/4156326.html

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