gpt4 book ai didi

Python 3 保存按钮

转载 作者:行者123 更新时间:2023-12-01 02:03:32 26 4
gpt4 key购买 nike

我有一个按钮可以创建另一个按钮,但是当我关闭程序时,我刚刚创建的按钮消失了。

我知道如何使用 pickle 将内容保存在文件中,但是我应该如何编写代码,以便它保存按钮并在我打开程序时再次创建它们。

代码:

def CreateButton():
global name,clicked,started
started=True
name = str(input("Write a Student Name..."))
print('variable changed...')
clicked=True

def update():
global MainWindow,changed,clicked,name
#global clicked
if clicked and started:
#name = input("Write a Student Name: ")
button_new=needed_but(MainWindow=MainWindow,color="#E6E6E6",text=name)
clicked=False
buttonred=False
MainWindow.after(1*1000,update)

class needed_but:
def __init__(self,MainWindow,color,text):
console = Button(MainWindow, text=text,bg=color, command=self.changecolor)
console.pack()
self.instance=console

def changecolor(self):
buttonred,buttongreen,buttonblue=get_color()
global clicked,misses_dict
#clicked=True
#global buttoncolor
if buttonred == True:
self.instance.configure(bg = "#ff0000")
dun = self.instance.cget('text')
print(dun)
if dun in misses_dict:
misses_dict[('%s' %(dun))] += 1
else:
misses_dict[('%s' %(dun))] = 1
pickle.dump(dictionary, open("%s\SI\SIA.dat" %(path), 'wb'))
print(misses_dict)
buttonred = False
elif buttongreen == True:
self.instance.configure(bg = "#00ff00")
elif buttonblue == True:
self.instance.configure(bg = "#2e9afe")

最佳答案

how should I write the code so that it saves the buttons and creates them again when I open the program.

你不能。这些对象实际上是嵌入式 tcl 解释器中的对象。无法保存解释器的状态。

您必须编写代码以某种格式保存有关小部件的所有信息,您可以在其中读回并重新创建小部件。

关于Python 3 保存按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49311773/

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