10 lines
175 B
Python
10 lines
175 B
Python
from PyQt5.QtWidgets import QDialog
|
|
|
|
class PlotterDIalog(QDialog):
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
self.initUI()
|
|
|
|
def initUI(self):
|
|
... |