Python论坛  - 讨论区

标题:[python-chinese] 关于Tkinter的问题

2005年08月24日 星期三 10:50

Geoffery>>>嘎瑞>>>XuLi geofferyli at gmail.com
Wed Aug 24 10:50:35 HKT 2005

代码如下:
--------------------------------------------
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

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年08月24日 星期三 11:10

JerryKing wangzhe at eastcom.com
Wed Aug 24 11:10:06 HKT 2005

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
>  
>
一切正常啊!没有问题。


[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年08月24日 星期三 11:14

Geoffery>>>嘎瑞>>>XuLi geofferyli at gmail.com
Wed Aug 24 11:14:18 HKT 2005

怎么我点了按钮就会死!
我是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

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年08月24日 星期三 11:26

Qi Cheng qi.chengqi at gmail.com
Wed Aug 24 11:26:20 HKT 2005

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 (程 启)

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年08月24日 星期三 11:44

cuiyl guxinghan at gmail.com
Wed Aug 24 11:44:26 HKT 2005

我的是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

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年08月24日 星期三 11:46

limodou limodou at gmail.com
Wed Aug 24 11:46:32 HKT 2005

在 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

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年08月24日 星期三 12:19

Geoffery>>>嘎瑞>>>XuLi geofferyli at gmail.com
Wed Aug 24 12:19:05 HKT 2005

可是我在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

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年08月24日 星期三 12:27

limodou limodou at gmail.com
Wed Aug 24 12:27:39 HKT 2005

在 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

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年08月24日 星期三 12:53

Geoffery>>>嘎瑞>>>XuLi geofferyli at gmail.com
Wed Aug 24 12:53:58 HKT 2005

用命令试了,成功通过。开来是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

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年08月24日 星期三 15:16

ZeroSlug zyf_sz at tom.com
Wed Aug 24 15:16:10 HKT 2005

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
>  
>


[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年08月24日 星期三 19:47

missv lj0508 at gmail.com
Wed Aug 24 19:47:40 HKT 2005

我以前也碰到过这样的问题,不要在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 我的博客
>

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号