Advertisement
FlyFar

gui/AppWindow.py

Aug 10th, 2023
868
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.25 KB | Cybersecurity | 0 0
  1. from PyQt5.QtWidgets import QDialog
  2. from Gui import Gui
  3.  
  4.  
  5. class AppWindow(QDialog):
  6.  
  7.     def __init__(self):
  8.         super().__init__()
  9.         self.ui = Gui(self)
  10.         self.show()
  11.  
  12.  
  13.     @property
  14.     def gui(self):
  15.         return self.ui
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement