我正在使用如下代码创建一个 GUI:
class MyClass2(QtGui.QMainWindow):
def __init__(self, win_parent = None):
def on_blahblah_clicked(x):
if __name__ == "__main__":
# Someone is launching this directly
# Create the QApplication
app = QtGui.QApplication(sys.argv)
#The Main window
main_window = HyperlinkWindow()
main_window.show()
# Enter the main loop
app.exec_()
我有一个像这样的加载项按钮的代码:
class MyClass(object):
"""Impementation of Some_addin.button (Button)"""
def __init__(self):
#Code here
def onClick(self):
# Code
pass
我想创建一个加载项按钮,单击该按钮会显示上面创建的 GUI。所以我希望能够在函数 onClick 中调用 GUI 代码的类 MyClass2。就像我在下面的代码中使用 a in y 一样:
class x:
a = 1 + 1
class y:
print x.a