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

PyQt5--Position

时间:2018-09-13 18:37:30      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:geometry   sas   http   idg   test   分享图片   图片   created   ini   

 1 # -*- coding:utf-8 -*-
 2 ‘‘‘
 3 Created on Sep 13, 2018
 4 
 5 @author: SaShuangYiBing
 6 ‘‘‘
 7 import sys
 8 from PyQt5.QtWidgets import QApplication,QWidget,QLabel
 9 
10 class New_test(QWidget):
11     def __init__(self):
12         super().__init__()
13         self.initUI()
14         
15     def initUI(self):
16         lbl1 = QLabel(zetcode,self)
17         lbl1.move(15,10)
18         lbl2 = QLabel(tutorials,self)
19         lbl2.move(35,40)
20         lbl3 = QLabel(for programmers,self)
21         lbl3.move(55,70)
22         
23         self.setGeometry(300,300,250,150)
24         self.setWindowTitle(Absolute)
25         self.show()
26         
27 if __name__ == "__main__":
28     app = QApplication(sys.argv)
29     ex = New_test()
30     sys.exit(app.exec_())

 

技术分享图片

 

PyQt5--Position

标签:geometry   sas   http   idg   test   分享图片   图片   created   ini   

原文地址:https://www.cnblogs.com/SaShuangYiBing/p/9641931.html

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