在python

时间:2015-12-07 20:51:31

标签: python user-interface python-3.x tkinter python-3.4

我已经在python的父窗口上搜索并发现了一些东西,但这不是我想要的东西。我正在尝试制作一个简单的程序,打开一个窗口,然后在前一个窗口关闭时打开另一个窗口。如果用户没有,我还试图在默认情况下实现某种循环或休眠时间来销毁窗口。这就是我所拥有的(我是新的,请不要笑)

 from tkinter import *
 import time
 root = Tk()


 i = 0

 if i < 1:
     root.title("title")
     logo = PhotoImage(file="burger.gif")
     w1 = Label(root, image=logo).pack()
     time.sleep(3)
     root.destroy()
     i = i + 1


 if i == 1:
     root.title("title")
     photoTwo = PhotoImage(file="freedom.gif")
     labelTwo = Label(root, image=photoTwo).pack()
     time.sleep(3)
     root.destroy()
     i = i + 1





 mainloop.()

2 个答案:

答案 0 :(得分:0)

也许你正在寻找这样的东西:

scanf() getline() fgets()

这会在第一个窗口中创建一个用户单击的按钮。然后调用openNewWindow函数,该函数销毁该窗口,并打开第二个窗口。我不确定是否有办法使用窗口退出按钮执行此操作。

答案 1 :(得分:0)

要创建更具可持续性的窗口创建,请使用:

from tkinter import *
import time

def openThirdWindow(previouswindow):
    previouswindow.destroy()


    thirdWindow = Tk()
    thirdWindow.title("Third Window")

    photoTwo = PhotoImage(file="freedom.gif")
    labelTwo = Label(thirdWindow, image=photoTwo).pack()

    thirdWindow.mainloop()

def openSecondWindow(previouswindow):
    previouswindow.destroy()


    secondWindow = Tk()
    secondWindow.title("Second Window")

    photoTwo = PhotoImage(file="freedom.gif")
    labelTwo = Label(secondWindow, image=photoTwo).pack()

    closeBttn = Button(secondWindow, text="Close!", command= lambda: openThirdWindow(secondWindow))
    closeBttn.pack()

    secondWindow.mainloop()


def openFirstWindow():
    firstWindow = Tk()


    firstWindow.title("First Window")

    logo = PhotoImage(file="burger.gif")
    w1 = Label(firstWindow, image=logo).pack()

    closeBttn = Button(firstWindow, text="Close!", command= lambda: openSecondWindow(firstWindow))
    closeBttn.pack()

    firstWindow.mainloop()

openFirstWindow()

这将每个窗口的开口放在一个单独的功能中,并通过按钮将窗口名称传递给下一个功能。另一种方法是将窗口名称设置为全局,但这很麻烦。

功能&#34; lambda:&#34;调用该函数,如果你想通过一个命令传递一些东西,你必须在tkinter中键入它。

我们首先启动整个过程首先调用&#34; openFirstWindow()&#34;