34 lines
697 B
Python
34 lines
697 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
SKU分析菜单的界面。
|
|
"""
|
|
|
|
from PyQt5 import QtGui, QtWidgets, QtCore
|
|
from PyQt5.QtCore import *
|
|
from PyQt5.QtGui import *
|
|
from PyQt5.QtWidgets import *
|
|
|
|
from .Ui_SKU_Widget import Ui_Form
|
|
|
|
|
|
class SKU_Form(QWidget, Ui_Form):
|
|
"""
|
|
Class documentation goes here.
|
|
"""
|
|
def __init__(self, parent=None):
|
|
"""
|
|
Constructor
|
|
|
|
@param parent reference to the parent widget
|
|
@type QWidget
|
|
"""
|
|
super(SKU_Form, self).__init__(parent)
|
|
self.setupUi(self)
|
|
if __name__ == "__main__":
|
|
import sys
|
|
app = QtWidgets.QApplication(sys.argv)
|
|
ui = SKU_Form()
|
|
|
|
ui.show()
|
|
sys.exit(app.exec_())
|