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

pyqt tips

时间:2017-06-12 12:57:17      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:nbsp   gui   qwidget   event   实例   tips   UI   自动   成员   

1.临时变量 实例化的窗口,show之后会自动被释放。

  tipWidget = QtGui.QWidget()

  tipWidget.show()

tipWidget会闪一下就被释放了。

应该用成员变量:

  self.tipWidget = QtGui.QWidget()

  self.tipWidget.show()

建议还应该写一个closeEvent()

 

pyqt tips

标签:nbsp   gui   qwidget   event   实例   tips   UI   自动   成员   

原文地址:http://www.cnblogs.com/CGAlpha/p/6992158.html

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