如何在tkinter中通过线程打开多个帧?

时间:2010-11-08 11:32:50

标签: python tkinter

我尝试通过多个线程打开多个帧。 这是我的代码。

'''
This is the module for test and studying.
Author:Roger
Date: 2010/10/10
Python version: 2.6.5
'''


import threading, Tkinter


class Application(Tkinter.Frame):
    def __init__(self, master=None):
        Tkinter.Frame.__init__(self, master)
        self.columnconfigure(50)
        self.rowconfigure(50)
        self.grid()
        self.createWidgets()
        self.mainloop()

    def createWidgets(self):
        self.quitButton = Tkinter.Button (self, text='Quit', command=self.quit )
        self.quitButton.grid()


class lab_404(threading.Thread):
    '''
    Is this the doc_string of lab_404?

    Can there be mutiple_window?
    I do know why is it like this?
    Why is the button still on the frame?
    '''

    myWindow = None

    def __init__(self, computer = 10, server = None, table = 1, chair = 1, student = 2, myWindow = None):
        threading.Thread.__init__(self)
        self.__computer = computer
        self.__server = server
        self.__table = table
        self.__chair = chair
        self.__student = student
        self.myWindow = Application()
        #self.myWindow.mainloop()    #mainloop method is here, I don't where to put it.

    def getComputer(self):
        return self.__computer

    def getServer(self):
        return self.__server

    def getMyWindow(self):
        return self.myWindow


    def setServer(self, Server):
        self.__server = Server


    def run(self):
        print super(lab_404, self).getName(), 'This thread is starting now!'
        print super(lab_404, self).getName(), 'This thread is ending.'


if __name__ == '__main__':
    for n in xrange(1, 10, 1):
        tn = lab_404(server = n)  #Try to make a loop.
        tn.start()

上面的代码一直作为一个框架运行,然后停止(mainloop?)。在关闭模板窗口之前,它不会继续到下一帧。它很合适。 我怎么能让它自动打开新的框架?

1 个答案:

答案 0 :(得分:1)

我认为你不能做你想做的事。一般来说,不需要运行多个帧和多个事件循环。您可以在单个线程内和单个事件循环中拥有多个帧。

相关问题