initial commit
This commit is contained in:
commit
d559fc128e
10 changed files with 150 additions and 0 deletions
22
task2.py
Normal file
22
task2.py
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
from PyQt6.QtWidgets import (
|
||||
QApplication,
|
||||
QLineEdit,
|
||||
QLabel,
|
||||
QMainWindow,
|
||||
QWidget,
|
||||
QFormLayout,
|
||||
QGroupBox
|
||||
)
|
||||
from PyQt6.QtCore import Qt
|
||||
|
||||
class TaskTwo(QMainWindow):
|
||||
def __init__(self):
|
||||
super().__init__()
|
||||
self._init_ui()
|
||||
|
||||
def _init_ui(self):
|
||||
self.root = QWidget()
|
||||
self.form = QFormLayout()
|
||||
|
||||
self.group = QGroupBox("Калькулятор скидки")
|
||||
self.form
|
||||
Loading…
Add table
Add a link
Reference in a new issue