pyqt-todolist/main/main.py

11 lines
226 B
Python
Raw Normal View History

2022-03-29 20:28:43 +08:00
from PyQt5.QtWidgets import *
from PyQt5.QtCore import *
2022-03-31 21:55:51 +08:00
import os, sys
class MainWindow():
def __init__(self):
super(MainWindow, self).__init__()
layout = QHBoxLayout()
left_layout=QHBoxLayout()