条目无法正确响应 Python 中按钮的绑定



我现在正试图用python编程计算器一段时间,我的条目有一个问题,我无法解决它,尽管我没有看到任何问题。

这里是我代码的一个例子:

from Tkinter import *
window =Tk()
window.title("Calculator")
#creating an entry
string=StringVar
entry = Entry(window, width=40,textvariable=string )
entry.grid(row=0, column=0, columnspan=6, ipady=10)
entry.focus()

#basically I have a function for creating buttons but here I will do it the traditional way.
num_one=Button(window,text="1",width=2,height=2,padx=20,pady=20,)
num_one.grid(row=1,column=0,padx=1,pady=1)
#crating an index for the calculator
index=0
#creating a function to insert the number one to the entry in the index position and then add one to the index
def print_one(index):
    entry.insert(index,"1")
binding the num_one button to the function above
num_one.bind("Button-1",print_one(index))

现在的问题是字符串"1"应该只在我单击num_one按钮时输入到条目中,但是当我自动启动程序时,数字"1"进入条目。

我在你的代码中注意到很多问题-

  1. string=StringVar -您需要像StringVar()一样调用它,否则您只是将StringVar类(而不是其对象)设置为' string.

  2. 当你做-

    num_one.bind("Button-1",print_one(index))
    

    你实际上首先调用函数并绑定返回值,你应该绑定函数对象(不调用它),示例-

    num_one.bind("<Button-1>",print_one)
    
  3. 要绑定鼠标左键点击功能,您需要绑定<Button-1>(注意末尾的<>),而不是Button-1

  4. 在您的函数中,您将收到的第一个参数(绑定的函数)是事件对象,而不是下一个索引。你可以使用-

    string.set(string.get() + "1")
    

正如Anand所说,您当前的代码存在各种问题,包括语法&设计。

我不确定为什么要自己跟踪条目的索引,因为条目小部件已经这样做了。要在当前光标位置插入文本,可以在entry.insert()方法调用中使用Tkinter.INSERT

看起来你打算为每个数字按钮写一个单独的回调函数。这是不必要的,而且会变得很乱。

下面的代码显示了对多个按钮使用单个回调函数的方法。我们将按钮的编号作为属性附加到按钮本身。回调函数可以很容易地访问这个数字,因为调用回调时使用的Event对象参数包含了作为属性激活它的小部件。

注意,我的代码使用import Tkinter as tk而不是from Tkinter import *。当然,它使代码变得有点冗长,但它防止了名称冲突。

import Tkinter as tk
window = tk.Tk()
window.title("Calculator")
entry_string = tk.StringVar()
entry = tk.Entry(window, width=40, textvariable=entry_string)
entry.grid(row=0, column=0, columnspan=6, ipady=10)
entry.focus()
def button_cb(event):
    entry.insert(tk.INSERT, event.widget.number)
for i in range(10):
    y, x = divmod(9 - i, 3)
    b = tk.Button(window, text=i, width=2, height=2, padx=20, pady=20)
    b.grid(row=1+y, column=2-x, padx=1, pady=1)
    #Save this button's number so it can be accessed in the callback
    b.number = i
    b.bind("<Button-1>", button_cb)
window.mainloop()

理想情况下,GUI代码应该放在一个类中,因为这样可以使小部件更容易共享数据,并且可以使代码更整洁。

相关内容

  • 没有找到相关文章

最新更新