From a733c6be0bb3c49c469faac700cc9f44782043b8 Mon Sep 17 00:00:00 2001 From: unknown <asoalexandros@gmail.com> Date: Mon, 12 May 2025 18:18:00 +0200 Subject: [PATCH] Interface part 1 qt --- hp4194/cv_qt_inteface.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 hp4194/cv_qt_inteface.py diff --git a/hp4194/cv_qt_inteface.py b/hp4194/cv_qt_inteface.py new file mode 100644 index 0000000..3c0d951 --- /dev/null +++ b/hp4194/cv_qt_inteface.py @@ -0,0 +1,15 @@ +import sys + +from PyQt6.QtWidgets import * + +class MainWinow(QMainWindow): + def __init__(self): + super().__init__() + + sample_information= QGroupBox(parent=self,title="Sample Information") + self.setCentralWidget(sample_information) + self.show() + +app= QApplication(sys.argv) +w= MainWinow() +app.exec() \ No newline at end of file -- GitLab