Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from PyQt5.QtWidgets import QDialog
- from Gui import Gui
- class AppWindow(QDialog):
- def __init__(self):
- super().__init__()
- self.ui = Gui(self)
- self.show()
- @property
- def gui(self):
- return self.ui
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement