This commit is contained in:
2026-04-26 16:06:42 +00:00
parent e2646fc888
commit 33a0f3a6d9
2 changed files with 16 additions and 2 deletions
+14
View File
@@ -0,0 +1,14 @@
from PySide6.QtWidgets import QApplication, QMainWindow
from pyqt5_gui import Ui_MainWindow
class Frm_main(QMainWindow, Ui_MainWindow):
def __init__(self):
super().__init__()
self.setupUi(self)
app = QApplication()
frm_main = Frm_main()
frm_main.lbl_eins.setText("Ein Label")
#self.lbl_eins.setText(QCoreApplication.translate("MainWindow", u"Das Label", None))
frm_main.show()
app.exec()