使用Entry并更新输入的条目,因为用户继续在TKinter中更改值(使用跟踪方法)

时间:2018-03-14 13:00:10

标签: python tkinter

我正在学习Python,我开始学习如何使用TKinter GUI。我正在制作一个小的界面,可以进行一些简单的统计分析,比如STDEV,T-tests等。我在一个基本上可以使用数据的类中有这个方法。

我希望用户能够输入任意数量的数据条目(我的意思是只要计算机可以处理)。我遇到的问题是 - 我想当我在Entry上使用方法.get()时,会返回None吗?

我也使用DoubleVar()的方法.trace()跟踪条目的值是否使用此处显示的方法更新:

Python Tkinter update when entry is changed

我觉得这很有道理,但它并不适合我。每当我在TK界面中更改一个框时,所有其他框都会被更改,但用于计算标准偏差的值不是条目框中显示的数字(无论如何都是相同的)。

以下是代码:

class StandardDeviation:     """     运行标准的deivation计算。     """

def __init__(self) -> None:
    """
    Initializes an instance of the functions!
    """
    self.stdev_pop = Button(top_frame,
                            text="Calculate the population "
                                 "standard deviation of the data set")
    self.stdev_pop.bind("<Button-1>", self.show_result_population)
    self.stdev_pop.pack()
    stdev_samp = Button(top_frame,
                        text="Calculate the sample "
                             "standard deviation of the data set")
    stdev_samp.bind("<Button-1>", self.show_result_sample)
    stdev_samp.pack()
    self.data = []
    self.enter_data = Button(top_frame, text="Enter data")
    self.enter_data.bind("<Button-1>", self.pack_add_entry_button)

    self.add_entry = Button(top_frame, text="Add data entry",
                            command=self.add_new_entry)
    self.enter_data.pack()
    self.all_entries = {}
    self.tracer = DoubleVar()
    self.tracer.trace("w", self.update)

def pack_add_entry_button(self, *args) -> None:
    """
    Pack the add_entry button.
    """
    self.add_entry.pack()

def update(self, *args) -> None:
    """
    Update the values of the entries.
    """
    global update_in_progress
    if update_in_progress:
        return
    update_in_progress = True
    data = [str(self.all_entries[item]) for item in self.all_entries]
    self.data = [int(item) for item in data if item.isnumeric()]
    update_in_progress = False

def add_new_entry(self):
    """
    Add a new entry.
    """
    new_entry = Entry(root, textvariable=self.tracer)
    new_entry.pack()
    new_entry_data = new_entry.get()
    self.all_entries[new_entry] = new_entry_data 

如果有人能帮助我,我不知道我在哪里错了我真的很感激。谢谢!

1 个答案:

答案 0 :(得分:0)

由于缩进已关闭而某些按钮调用不存在的函数,因此无法运行您发布的代码,因此这是一个标准跟踪程序,显示如何使用与之关联的tkinter变量trace,一个StringVar,以获取内容。

import tkinter

def text_changed(*args):
    print(tk_name.get())

top = tkinter.Tk()

tk_name=tkinter.StringVar()
tk_name.set("nothing")
tk_name.trace("w", text_changed)

tkinter.Label(top, textvariable=tk_name).grid(row=0, column=1)

entry_1 = tkinter.Entry(top, textvariable=tk_name)
entry_1.grid(row=1, column=1, sticky="W")
entry_1.focus_set()

top.mainloop()