尝试使用绑定命令更改tkinter标签颜色时出现AttributeError

2024-10-02 08:17:56 发布

您现在位置:Python中文网/ 问答频道 /正文

我正在尝试创建一个tkinter标签,当单击它时会改变颜色,以显示它已被访问。我一直收到一个属性错误,说Show\u Label没有属性'fg'。请帮帮我!这是正在使用的代码

class Sheet_Label(Label):
    def __init__(self,master,text):

        Label.__init__(self,master,text=text,cursor="hand2",font="Times 16 underline",fg="blue")
        def button_click(event):
            if self.fg =="blue":
                self.fg = "purple"
            else:
                self.fg = "purple"
            location = os.getcwd()
            file = webbrowser.open_new(location + '\\' + "hello.txt")
        self.bind("<Button-1>",func=button_click)

def sheets_view():
    sheets_window = Toplevel(window)
    hello = modules.Sheet_Label(master=sheets_window,text="Hello")
    hello.pack(padx=10,pady=10)
    sheets_window.title("Production Sheets")
    sheets_window.focus()
    x = (screen_width/2) - (500/2)
    y = (screen_height/2) - (500/2)
    sheets_window.geometry("%dx%d+%d+%d" % (500,500,x,y))
    sheets_window.resizable(0,0)

以下是错误消息:

Traceback (most recent call last):
  File "C:\Users\napaf\AppData\Local\Programs\Python\Python36\lib\tkinter\__init__.py", line 1699, in __call__
    return self.func(*args)
  File "inventory.py", line 311, in sheets_view

    hello = modules.Sheet_Label(master=sheets_window,text="Hello")
  File "C:\Users\napaf\Documents\Programming\adco_project\modules.py", line 24, in __init__
    self.action = action
NameError: name 'action' is not defined
PS C:\Users\napaf\Documents\Programming\adco_project> python inventory.pyException in Tkinter callback
Traceback (most recent call last):
  File "C:\Users\napaf\AppData\Local\Programs\Python\Python36\lib\tkinter\__init__.py", line 1699, in __call__
    return self.func(*args)
  File "C:\Users\napaf\Documents\Programming\adco_project\modules.py", line 27, in button_click
    if self.fg =="blue":
AttributeError: 'Sheet_Label' object has no attribute 'fg'

Tags: textinpyselfmasterinitlinewindow
1条回答
网友
1楼 · 发布于 2024-10-02 08:17:56

在调用button_click之前,您不会初始化self.fg,但此时太迟了,因为您试图在设置它之前引用self.fg

另外,创建小部件时,self.fgfg属性不同(例如:Label(..., fg="blue"))。如果您想获得小部件属性的值,您应该使用self.cget('fg')或使用快捷方式self['fg']。如果要在类本身中设置它,应该使用self.configure(fg="purple")

相关问题 更多 >

    热门问题