2005年08月24日 星期三 10:50
代码如下: -------------------------------------------- from Tkinter import * class Application(Frame): def __init__(self,master=None): Frame.__init__(self,master) self.grid() self.createWidgets() def createWidgets(self): self.quitButton = Button (self, text="quit", command = self.quit) self.quitButton.grid() app = Application() app.master.title("sample") app.mainloop() ------------------------------------------- 运行,点击quit按钮后就死了。 -- 我就是我,是人间不一样的焰火. 升级中.................................. http://groups-beta.google.com/group/moview 电影爱好者讨论组 http://groups-beta.google.com/group/wiki4u wiki爱好者讨论组 http://www.coldtea.cn/blog/blog.asp?name=geoffery 我的博客 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050824/7eba6f6d/attachment-0001.html
2005年08月24日 星期三 11:10
Geoffery>>>嘎瑞>>>XuLi wrote: > 代码如下: > -------------------------------------------- > from Tkinter import * > > class Application(Frame): > def __init__(self,master=None): > Frame.__init__(self,master) > self.grid() > self.createWidgets() > > def createWidgets(self): > self.quitButton = Button (self, text="quit", command = self.quit) > self.quitButton.grid() > > app = Application() > app.master.title("sample") > app.mainloop() > ------------------------------------------- > > 运行,点击quit按钮后就死了。 > > -- > 我就是我,是人间不一样的焰火. > 升级中.................................. > http://groups-beta.google.com/group/moview 电影爱好者讨论组 > http://groups-beta.google.com/group/wiki4u wiki爱好者讨论组 > http://www.coldtea.cn/blog/blog.asp?name=geoffery 我的博客 > >------------------------------------------------------------------------ > >_______________________________________________ >python-chinese list >python-chinese at lists.python.cn >http://python.cn/mailman/listinfo/python-chinese > > 一切正常啊!没有问题。
2005年08月24日 星期三 11:14
怎么我点了按钮就会死! 我是Python2.4.1,在IDLE中运行的 在05-8-24,JerryKing <wangzhe at eastcom.com> 写道: > > Geoffery>>>嘎瑞>>>XuLi wrote: > > > 代码如下: > > -------------------------------------------- > > from Tkinter import * > > > > class Application(Frame): > > def __init__(self,master=None): > > Frame.__init__(self,master) > > self.grid() > > self.createWidgets() > > > > def createWidgets(self): > > self.quitButton = Button (self, text="quit", command = self.quit) > > self.quitButton.grid() > > > > app = Application() > > app.master.title("sample") > > app.mainloop() > > ------------------------------------------- > > > > 运行,点击quit按钮后就死了。 > > > > -- > > 我就是我,是人间不一样的焰火. > > 升级中.................................. > > http://groups-beta.google.com/group/moview 电影爱好者讨论组 > > http://groups-beta.google.com/group/wiki4u wiki爱好者讨论组 > > http://www.coldtea.cn/blog/blog.asp?name=geoffery 我的博客 > > > >------------------------------------------------------------------------ > > > >_______________________________________________ > >python-chinese list > >python-chinese at lists.python.cn > >http://python.cn/mailman/listinfo/python-chinese > > > > > 一切正常啊!没有问题。 > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > -- 我就是我,是人间不一样的焰火. 升级中.................................. http://groups-beta.google.com/group/moview 电影爱好者讨论组 http://groups-beta.google.com/group/wiki4u wiki爱好者讨论组 http://www.coldtea.cn/blog/blog.asp?name=geoffery 我的博客 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050824/4b4321df/attachment.htm
2005年08月24日 星期三 11:26
On 8/24/05, Geoffery>>>嘎瑞>>>XuLi <geofferyli at gmail.com> wrote: > 怎么我点了按钮就会死! > 我是Python2.4.1,在IDLE中运行的 copy你的代码,我这里也是好的。 我用的是Python 2.4.1 (#65, Jun 20 2005, 17:01:55) [MSC v.1310 32 bit (Intel)] on win32 在Eclipse3.1+pydev0.97下运行的。 -- Best regards Qi Cheng (程 启)
2005年08月24日 星期三 11:44
我的是python 2.3.4,点击按钮后,死机 ----- Original Message ----- From: Geoffery>>>嘎瑞>>>XuLi To: python-chinese at lists.python.cn Sent: Wednesday, August 24, 2005 10:50 AM Subject: [python-chinese] 关于Tkinter的问题 代码如下: -------------------------------------------- from Tkinter import * class Application(Frame): def __init__(self,master=None): Frame.__init__(self,master) self.grid() self.createWidgets() def createWidgets(self): self.quitButton = Button (self, text="quit", command = self.quit) self.quitButton.grid() app = Application() app.master.title("sample") app.mainloop() ------------------------------------------- 运行,点击quit按钮后就死了。 -- 我就是我,是人间不一样的焰火. 升级中.................................. http://groups-beta.google.com/group/moview 电影爱好者讨论组 http://groups-beta.google.com/group/wiki4u wiki爱好者讨论组 http://www.coldtea.cn/blog/blog.asp?name=geoffery 我的博客 ---------------------------------------------------------------------------- -- _______________________________________________ python-chinese list python-chinese at lists.python.cn http://python.cn/mailman/listinfo/python-chinese -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050824/e23599b4/attachment.html
2005年08月24日 星期三 11:46
在 05-8-24,Geoffery>>>嘎瑞>>>XuLi<geofferyli at gmail.com> 写道: > 怎么我点了按钮就会死! > 我是Python2.4.1,在IDLE中运行的 > 不要在IDLE下运行,因为IDLE也是Tkinter做的,可能会冲突。 -- I like python! My Donews Blog: http://www.donews.net/limodou
2005年08月24日 星期三 12:19
可是我在Eric3和Pythonwin中都试过了!还是一样,一点就死了 代码没问题啊! 在05-8-24,limodou <limodou at gmail.com> 写道: > > 在 05-8-24,Geoffery>>>嘎瑞>>>XuLi<geofferyli at gmail.com> 写道: > > 怎么我点了按钮就会死! > > 我是Python2.4.1,在IDLE中运行的 > > > > 不要在IDLE下运行,因为IDLE也是Tkinter做的,可能会冲突。 > > -- > I like python! > My Donews Blog: http://www.donews.net/limodou > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > > -- 我就是我,是人间不一样的焰火. 升级中.................................. http://groups-beta.google.com/group/moview 电影爱好者讨论组 http://groups-beta.google.com/group/wiki4u wiki爱好者讨论组 http://www.coldtea.cn/blog/blog.asp?name=geoffery 我的博客 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050824/3f579f0d/attachment.htm
2005年08月24日 星期三 12:27
在 05-8-24,Geoffery>>>嘎瑞>>>XuLi<geofferyli at gmail.com> 写道: > 可是我在Eric3和Pythonwin中都试过了!还是一样,一点就死了 > 代码没问题啊! > > 在05-8-24,limodou <limodou at gmail.com> 写道: > > > > 在 05-8-24,Geoffery>>>嘎瑞>>>XuLi<geofferyli at gmail.com> 写道: > > > 怎么我点了按钮就会死! > > > 我是Python2.4.1,在IDLE中运行的 > > > > > > > 不要在IDLE下运行,因为IDLE也是Tkinter做的,可能会冲突。 > > 因为GUI是有事件循环的,而IDE也是有的,有可能会冲突,建议先在命令行下试试吧。 -- I like python! My Donews Blog: http://www.donews.net/limodou
2005年08月24日 星期三 12:53
用命令试了,成功通过。开来是IDE的问题。 谢谢 在05-8-24,limodou <limodou at gmail.com> 写道: > > 在 05-8-24,Geoffery>>>嘎瑞>>>XuLi<geofferyli at gmail.com> 写道: > > 可是我在Eric3和Pythonwin中都试过了!还是一样,一点就死了 > > 代码没问题啊! > > > > 在05-8-24,limodou <limodou at gmail.com> 写道: > > > > > > 在 05-8-24,Geoffery>>>嘎瑞>>>XuLi<geofferyli at gmail.com> 写道: > > > > 怎么我点了按钮就会死! > > > > 我是Python2.4.1,在IDLE中运行的 > > > > > > > > > > 不要在IDLE下运行,因为IDLE也是Tkinter做的,可能会冲突。 > > > > 因为GUI是有事件循环的,而IDE也是有的,有可能会冲突,建议先在命令行下试试吧。 > > > -- > I like python! > My Donews Blog: http://www.donews.net/limodou > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > > -- 我就是我,是人间不一样的焰火. 升级中.................................. http://groups-beta.google.com/group/moview 电影爱好者讨论组 http://groups-beta.google.com/group/wiki4u wiki爱好者讨论组 http://www.coldtea.cn/blog/blog.asp?name=geoffery 我的博客 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050824/205df627/attachment.html
2005年08月24日 星期三 15:16
Idle是Tkinter写的, 如果直接运行会有问题吗? 我用的是ActivePython 2.3.4 直接运行没有问题。 Geoffery>>>嘎瑞>>>XuLi 写道: > 代码如下: > -------------------------------------------- > from Tkinter import * > > class Application(Frame): > def __init__(self,master=None): > Frame.__init__(self,master) > self.grid() > self.createWidgets() > > def createWidgets(self): > self.quitButton = Button (self, text="quit", command = self.quit) > self.quitButton.grid() > > app = Application() > app.master.title("sample") > app.mainloop() > ------------------------------------------- > > 运行,点击quit按钮后就死了。 > > -- > 我就是我,是人间不一样的焰火. > 升级中.................................. > http://groups-beta.google.com/group/moview 电影爱好者讨论组 > http://groups-beta.google.com/group/wiki4u wiki爱好者讨论组 > http://www.coldtea.cn/blog/blog.asp?name=geoffery 我的博客 > >------------------------------------------------------------------------ > >_______________________________________________ >python-chinese list >python-chinese at lists.python.cn >http://python.cn/mailman/listinfo/python-chinese > >
2005年08月24日 星期三 19:47
我以前也碰到过这样的问题,不要在IDLE下运行,单独运行就不会有问题。 On 8/24/05, Geoffery>>>嘎瑞>>>XuLi <geofferyli at gmail.com> wrote: > 用命令试了,成功通过。开来是IDE的问题。 > 谢谢 > > 在05-8-24,limodou <limodou at gmail.com> 写道: > > > > 在 05-8-24,Geoffery>>>嘎瑞>>>XuLi<geofferyli at gmail.com> 写道: > > > 可是我在Eric3和Pythonwin中都试过了!还是一样,一点就死了 > > > 代码没问题啊! > > > > > > 在05-8-24,limodou <limodou at gmail.com> 写道: > > > > > > > > 在 05-8-24,Geoffery>>>嘎瑞>>>XuLi<geofferyli at gmail.com> 写道: > > > > > 怎么我点了按钮就会死! > > > > > 我是Python2.4.1,在IDLE中运行的 > > > > > > > > > > > > > 不要在IDLE下运行,因为IDLE也是Tkinter做的,可能会冲突。 > > > > > > 因为GUI是有事件循环的,而IDE也是有的,有可能会冲突,建议先在命令行下试试吧。 > > > > > > -- > > I like python! > > My Donews Blog: http://www.donews.net/limodou > > > > _______________________________________________ > > python-chinese list > > python-chinese at lists.python.cn > > http://python.cn/mailman/listinfo/python-chinese > > > > > > > > > -- > 我就是我,是人间不一样的焰火. > 升级中.................................. > http://groups-beta.google.com/group/moview 电影爱好者讨论组 > http://groups-beta.google.com/group/wiki4u wiki爱好者讨论组 > http://www.coldtea.cn/blog/blog.asp?name=geoffery 我的博客 >
Zeuux © 2025
京ICP备05028076号