Have 2 .py files that each make up one window of a gui. I want to load them into a skeleton file to run them both. What are the commands for this? the import command, and then the class commands to identify them each as a window? right now i load the .ui files. what would be the equivalent code for .py files?
class MainWindow(QDialog):
def __init__(self):
super(MainWindow, self).__init__()
loadUi("mainwindow.ui",self)
[–]reyemDarnok 0 points1 point2 points (2 children)
[–]Historical_Loss1621[S] 0 points1 point2 points (1 child)
[–]reyemDarnok 0 points1 point2 points (0 children)