最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
使用Pycharm+PyQt5弹出子窗口程序代码
时间:2022-06-25 01:40:34 编辑:袖梨 来源:一聚教程网
本篇文章小编给大家分享一下使用Pycharm+PyQt5弹出子窗口程序代码,文章代码介绍的很详细,小编觉得挺不错的,现在分享给大家供大家参考,有需要的小伙伴们可以来看看。
如下:
class video_record(QWidget): def __init__(self): super().__init__() self.initUI() def initUI(self): self.startbtn=QPushButton('begin',self) self.startbtn.setGeometry(40,20,100,20) self.startbtn.clicked.connect(self.time1) self.timeshow=QLineEdit('',self) self.timeshow.setGeometry(200,200,100,20) self.setGeometry(100,100,640,480) self.setWindowTitle('rec') self.show() def time1(self): print('rec start') self.nw=newin() self.nw.show() self.nw.exex_() class newin(QDialog): def __init__(self): super().__init__() self.initUI() def initUI(self): self.lblx=QLabel('hh',self) self.lblx.setGeometry(100,100,100,20) self.lblx.setAutoFillBackground(True) self.pale=QPalette() self.pale.setColor(QPalette.Window,Qt.blue) self.lblx.setPalette(self.pale) self.setGeometry(100,100,300,300) self.setWindowTitle('newin') self.show() if __name__ == '__main__': app=QApplication(sys.argv) ex=video_record() ex.show() sys.exit(app.exec_())
如果测试时发现闪退,可以试着修改一下调用子窗口的程序:
把‘show'去掉:
def time1(self): print('rec start') self.nw=newin() #self.nw.show() self.nw.exex_()
相关文章
- 以闪亮之名店长体验流霞季怎么玩 缘溪临霞套装活动介绍 12-31
- 未定事件簿旧梦新生左然篇怎么玩 旧梦新生左然篇活动介绍 12-31
- 未定事件簿左然破浪远行怎么样 12-31
- 桃源深处有人家行医问诊怎么玩 12-31
- 恋与制作人跨年福利有哪些 恋与制作人跨年福利内容介绍 12-31
- 阴阳师协同对弈大乱斗怎么玩 阴阳师协同对弈大乱斗活动介绍 12-31