Python Tkinter,简单示例在 win 7 上失败
从 此处 我复制了一个 python 示例gui 应用程序,但它不起作用。 它启动并显示窗口,但是当我单击“退出”按钮时,它就冻结了。如果我再次运行它,那么我会在上一个窗口中看到另一个退出按钮。
示例代码有错误还是win 7有这个问题? 我正在使用 python 2.6.5 和 win 7 32 位。
From here I've copied an example of python gui app, but it's not working.
It starts up and show window, but when i click the Quit button it just freze. And if I run it again then i got another quit button in previous window.
Is there error in example code or is this problem with win 7 ?
I am using python 2.6.5 and win 7 32 bit.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
单击该按钮时,它会尝试调用
self.quit
,但该函数不存在。尝试将此方法添加到
Application
类中。When the button is clicked, it tries to call
self.quit
, which doesn't exist.Try adding this method to the
Application
class.也有效。
works too.