Python Tkinter,简单示例在 win 7 上失败

发布于 2024-09-11 04:59:36 字数 270 浏览 1 评论 0原文

此处 我复制了一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

喜爱纠缠 2024-09-18 04:59:36

单击该按钮时,它会尝试调用 self.quit,但该函数不存在。
尝试将此方法添加到 Application 类中。

....
    def quit(self):
        import sys
        sys.exit()
....

When the button is clicked, it tries to call self.quit, which doesn't exist.
Try adding this method to the Application class.

....
    def quit(self):
        import sys
        sys.exit()
....
少女的英雄梦 2024-09-18 04:59:36
def quit(self):
    self.master.destroy()

也有效。

def quit(self):
    self.master.destroy()

works too.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文