gpt4 book ai didi

python - 使用变量将选项传递给 Tkinter 小部件

转载 作者:行者123 更新时间:2023-12-01 08:03:23 25 4
gpt4 key购买 nike

我正在尝试使用 Tkinter 制作 GUI,但遇到了问题。我的 GUI 将有很多非常相似的按钮,带有很多选项(字体、宽度、高度、命令等),我宁愿写变量的名称,它存储重复的选项,而不是一遍又一遍地重复所有命令再次。

我什至不知道这是否可能。我尝试将选项保存为变量中的字符串,然后将其传递到变量中,但它引发: AttributeError: 'str' object has no attribute 'tk'

这是我的按钮示例:

Num3 = Tk.Button(main, text="3", width = 2, height = 2, font = "Arial 16", command=lambda: nex("3"))
Num4 = Tk.Button(main, text="4", width = 2, height = 2, font = "Arial 16", command=lambda: nex("4"))

我希望它看起来像这样:

var = '主,宽度 = 2,高度 = 2,字体 =“Arial 16”,'
Num3 = Tk.Button(Var, text="3",command=lambda: nex("3"))
Num4 = Tk.Button(Var, text="4",command=lambda: nex("4"))

但它引发了AttributeError:'str'对象没有属性'tk'

谢谢大家的回答。

最佳答案

将它们保存在字典中,就像这样

import tkinter as tk

main = tk.Tk()

options = {"text": "Hello!", "font": "Arial 16", "width": 2, "height": 2}

Num4 = tk.Button(main, **options)
Num4.pack()

main.mainloop()

查看这个问题How to pass dictionary items as function arguments in python? .

关于python - 使用变量将选项传递给 Tkinter 小部件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55637473/

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