59

我无法使用键绑定来更改标签或任何参数的值。这是我的代码:

from tkinter import*

class MyGUI:
  def __init__(self):
    self.__mainWindow = Tk()
    #self.fram1 = Frame(self.__mainWindow)
    self.labelText = 'Enter amount to deposit'
    self.depositLabel = Label(self.__mainWindow, text = self.labelText)
    self.depositEntry = Entry(self.__mainWindow, width = 10)
    self.depositEntry.bind('<Return>', self.depositCallBack)
    self.depositLabel.pack()
    self.depositEntry.pack()

    mainloop()

  def depositCallBack(self,event):
    self.labelText = 'change the value'
    print(self.labelText)

myGUI = MyGUI()

当我运行它时,我单击输入框并按回车键,希望标签将值更改为“更改值”。但是,虽然它确实打印了该文本,但标签保持不变。

通过查看有关类似问题和问题的其他问题,我已经想出了如何在课堂外处理其中的一些问题,但是在课堂上做这件事时遇到了一些困难。

另外,在旁注中,“大师”在 tkinter 中扮演什么角色?

4

6 回答 6

93
self.labelText = 'change the value'

上面这句话让labelText改变了值,但没有改变depositLabel的文本。

要更改 depositLabel 的文本,请使用以下设置之一:

self.depositLabel['text'] = 'change the value'

或者

self.depositLabel.config(text='change the value')
于 2013-06-15T17:13:07.327 回答
26

您还可以textvariable在创建标签时定义一个,并更改文本变量以更新标签中的文本。这是一个例子:

labelText = StringVar()
depositLabel = Label(self, textvariable=labelText)
depositLabel.grid()

def updateDepositLabel(txt) # you may have to use *args in some cases
    labelText.set(txt)

无需depositLabel手动更新文本。Tk 为您做到这一点。

于 2016-01-30T01:05:32.657 回答
7

使用config方法改变标签的值:

top = Tk()

l = Label(top)
l.pack()

l.config(text = "Hello World", width = "50")
于 2016-03-25T17:18:16.200 回答
2

这是另一个,我想。仅供参考。让我们将变量设置为 StringVar 类的实例

如果您使用 Tcl 语言编写 Tk,您可以要求系统在变量更改时通知您。Tk 工具包可以使用这个称为跟踪的功能来在修改关联变量时更新某些小部件。

无法跟踪 Python 变量的更改,但 Tkinter 允许您创建变量包装器,可以在 Tk 可以使用跟踪的 Tcl 变量的任何地方使用。

text = StringVar()
self.depositLabel = Label(self.__mainWindow, text = self.labelText, textvariable = text)
#                                                                   ^^^^^^^^^^^^^^^^^^^
def depositCallBack(self,event):
    text.set('change the value')
于 2013-12-11T13:09:03.567 回答
1

我制作了一个小型 tkinter 应用程序,它在单击按钮后设置标签

#!/usr/bin/env python
from Tkinter import *
from tkFileDialog import askopenfilename
from tkFileDialog import askdirectory


class Application:
    def __init__(self, master):
        frame = Frame(master,width=200,height=200)
        frame.pack()

        self.log_file_btn = Button(frame, text="Select Log File", command=self.selectLogFile,width=25).grid(row=0)
        self.image_folder_btn = Button(frame, text="Select Image Folder", command=self.selectImageFile,width=25).grid(row=1)
        self.quite_button = Button(frame, text="QUIT", fg="red", command=frame.quit,width=25).grid(row=5)

        self.logFilePath =StringVar()
        self.imageFilePath = StringVar()
        self.labelFolder = Label(frame,textvariable=self.logFilePath).grid(row=0,column=1)
        self.labelImageFile = Label(frame,textvariable = self.imageFilePath).grid(row = 1,column=1)

        def selectLogFile(self):
            filename = askopenfilename()
            self.logFilePath.set(filename)

        def selectImageFile(self):
            imageFolder = askdirectory()
            self.imageFilePath.set(imageFolder)

root = Tk()
root.title("Geo Tagging")
root.geometry("600x100")
app = Application(root)
root.mainloop()
于 2016-03-18T13:38:37.930 回答
1

有很多方法可以解决这样的问题。有很多方法可以做到这一点。我将为您提供我所知道的这个问题的最简单的解决方案。当真正改变标签或任何类型的wiget的文本时。我会这样做。

Name_Of_Label["text"] = "Your New Text"

因此,当我将这些知识应用于您的代码时。它看起来像这样。

from tkinter import*

class MyGUI:
   def __init__(self):
    self.__mainWindow = Tk()
    #self.fram1 = Frame(self.__mainWindow)
    self.labelText = 'Enter amount to deposit'
    self.depositLabel = Label(self.__mainWindow, text = self.labelText)
    self.depositEntry = Entry(self.__mainWindow, width = 10)
    self.depositEntry.bind('<Return>', self.depositCallBack)
    self.depositLabel.pack()
    self.depositEntry.pack()

    mainloop()

  def depositCallBack(self,event):
    self.labelText["text"] = 'change the value'
    print(self.labelText)

myGUI = MyGUI()

如果这有帮助,请告诉我!

于 2019-04-30T02:37:11.810 回答