python运行tkinter,不报错也没有反应也不显示窗口
我用的是ubuntukylin15.04,python3.4,importtkinter也没有报错...
我用的是ubuntu kylin15.04,python3.4 ,import tkinter也没有报错
展开
展开全部
不懂,一起学习。
我修改了下你的code,
# ActivePython 2.7
import threading
import Tkinter
import time
class mapthread(threading.Thread):
def run(self):
self.game()
def game(self):
while 1:
print 'GAME'
time.sleep(1)
class helpthread(threading.Thread):
def run(self):
self.help()
def help(self):
t=Tkinter.Tk()
f=Tkinter.Frame(t,width=200,height=200)
l=Tkinter.Label(f,text='XXYYZZ')
f.pack(fill=Tkinter.BOTH, expand=1)
l.pack(fill=Tkinter.BOTH, expand=1)
t.mainloop()
t1=mapthread()
t2=helpthread()
t2.start()
t1.start()
执行后,可以显示窗口。
我修改了下你的code,
# ActivePython 2.7
import threading
import Tkinter
import time
class mapthread(threading.Thread):
def run(self):
self.game()
def game(self):
while 1:
print 'GAME'
time.sleep(1)
class helpthread(threading.Thread):
def run(self):
self.help()
def help(self):
t=Tkinter.Tk()
f=Tkinter.Frame(t,width=200,height=200)
l=Tkinter.Label(f,text='XXYYZZ')
f.pack(fill=Tkinter.BOTH, expand=1)
l.pack(fill=Tkinter.BOTH, expand=1)
t.mainloop()
t1=mapthread()
t2=helpthread()
t2.start()
t1.start()
执行后,可以显示窗口。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询