Skip to content
Snippets Groups Projects
Commit a733c6be authored by Alexandros Asonitis's avatar Alexandros Asonitis
Browse files

Interface part 1 qt

parent a7d1d8b3
No related branches found
No related tags found
No related merge requests found
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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment