如何使用框架 #84
Unanswered
ShawnMerryCode
asked this question in
Q&A
如何使用框架
#84
Replies: 1 comment
-
我认为意思应该是: 原来的代码这样写: class MyWindow(QMainWindow):
... 现在换成: class MyWindow(siui.templates.application.SiliconApplication):
... 当然也可以由 class MyWindow(object):
def __init__(self):
self.win=QMainWindow()
... 换成 class MyWindow(object):
def __init__(self):
self.win=siui.templates.application.SiliconApplication()
... |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
本人刚开始接触 PyQt5,没有看懂 README.md 里面说的
是什么意思,可否告诉我如何使用此框架?谢谢!
Beta Was this translation helpful? Give feedback.
All reactions