gpt4 book ai didi

带有 Tkinter 的 Python GUI

转载 作者:太空宇宙 更新时间:2023-11-04 06:24:05 25 4
gpt4 key购买 nike

我在 python 中使用 gui 时遇到问题,程序会自动执行按钮创建中的命令选项。所以我陷入了一个循环。''' 创建于 5-mrt.-2012

@author: Max
'''
from Tkinter import *


class main(Tk):
def __init__(self,parent):
self.mainWindow()
def mainWindow(self):
'''Make the main window '''
self.quitAll()
self.app = Tk()
self.app.title('NMBS application')
self.makeAppButtons()
self.finish(self.app)
def makeAppButtons(self):
'''Make all the buttons for the main menu'''
button_lijn = Button(self.app, text="Voeg lijnritten toe", command = self.lijnritten())
button_lijn.pack()
def finish(self,window):
''' Make the main window'''
window.mainloop()
def endButton(self,window):
'''Make a quit button'''
button_back = Button(window,text="Sluiten",command = self.mainWindow())
button_back.pack()
def quitAll(self):
'''Close all the current windows'''
self.lijn_window.quit()
self.app.quit()
def lijnritten(self):
''' Make the lijnritten window'''
self.app.quit()
self.lijn_window = Tk()
self.lijn_window.title("lijnritten")
self.endButton(self.lijn_window)
self.finish(self.lijn_window)
main(None)

最佳答案

当您链接命令时,不要使用 () 所以 command=self.action,就像这样。此外,这一行似乎给您带来了一些麻烦 self.quitAll()...不确定您要用它做什么,但这是我的两分钱。

''' 
Created on 5-mrt.-2012
@author: Max
'''
from Tkinter import *


class main(Tk):
def __init__(self,parent):
self.mainWindow()
def mainWindow(self):
'''Make the main window '''
#self.quitAll()
self.app = Tk()
self.app.title('NMBS application')
self.makeAppButtons()
self.finish(self.app)
def makeAppButtons(self):
'''Make all the buttons for the main menu'''
button_lijn = Button(self.app, text="Voeg lijnritten toe", command = self.lijnritten)
button_lijn.pack()
def finish(self,window):
''' Make the main window'''
window.mainloop()
def endButton(self,window):
'''Make a quit button'''
button_back = Button(window,text="Sluiten",command = self.mainWindow)
button_back.pack()
def quitAll(self):
'''Close all the current windows'''
self.lijn_window.quit()
self.app.quit()
def lijnritten(self):
''' Make the lijnritten window'''
self.app.quit()
self.lijn_window = Tk()
self.lijn_window.title("lijnritten")
self.endButton(self.lijn_window)
self.finish(self.lijn_window)
main(None)

关于带有 Tkinter 的 Python GUI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9658365/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com