这是一个创建于 2375 天前的主题,其中的信息可能已经有所发展或是发生改变。
代码内容:
import wx
def hello(event):
print ("Hello,word!")
app=wx.App()
win=wx.Frame(None,title="Hello,wxPython!",
size=(200,100))
button=wx.Button(win,label="Hello")
button.Bind(wx.EVT_BUTTON,hello)
win.show()
app.MainLoop()
错误提示:
Traceback (most recent call last):
File "C:\Users\infin\Desktop\Hello Word!.py", line 12, in <module>
win.show()
AttributeError: 'Frame' object has no attribute 'show'