PYTHON(tkinter)在条目中创建增量值



我正在尝试创建一个程序,该程序允许用户增加值或将其自己输入到系统中的一个条目中,该条目看起来如下:基本桂这是我的代码

from tkinter import *
ACGui = Tk()
class GUI:
def __init__(self, start, stop, delay, buttons):
new_delay = delay
self.start_button = start
self.stop_button = stop
self.delay = StringVar()
self.new_delay = StringVar()
self.delay.set(delay)
self.new_delay.set(new_delay)
self.buttons = buttons
def delay_increment(self, op, num):
print(self.delay.get())
print(op)
print(num)
def create_gui(self):
Label(ACGui, text="Auto Clicker").grid(row=0, column=0)
Button(ACGui, text="+1", command=lambda: self.delay_increment("add", 1)).grid(row=1, column=1)
Label(ACGui, text="Delay: ").grid(row=2, column=0)
Entry(ACGui, text=self.delay, textvariable=self.new_delay, justify="center").grid(row=2, column=1)
Button(ACGui, text="Submit", command=self.delay.set(self.new_delay)).grid(row=2, column=5)
Button(ACGui, text="-1", command=lambda: self.delay_increment("sub", 1)).grid(row=3, column=1)
ACGui.mainloop()
main = GUI(1, 1, 2, 1)
main.create_gui()

我遇到的问题是self.delay.get()返回PY_VAR1PY_VAR0

我真的很纠结该怎么办,有人能帮我吗?

问题是在这行上没有使用lambda

Button(ACGui, text="Submit", command=self.delay.set(self.new_delay)).grid(row=2, column=5)

当你运行程序时,它会自动执行self.delay.set。尝试

Button(ACGui, text="Submit", command=lambda:self.delay.set(self.new_delay)).grid(row=2, column=5)

好的,我不知道发生了什么,但我删除了条目下面一行的提交按钮,现在它可以工作了。

相关内容

  • 没有找到相关文章

最新更新