如何在Python Tkinter中更改条目小部件边框颜色

时间:2015-01-07 18:00:48

标签: python tkinter widget border tkinter-entry

我正在开发一个具有条目小部件的程序。当用户单击一个按钮并且该条目小部件为空时,程序将更改边框颜色(如果它为红色)。但是,当我尝试边框时,只保持相同的颜色。哪个是黑色的。

以下是代码:

self.timeField = Entry(self.mfr, width=40, relief=SOLID, highlightbackground="red", highlightcolor="red")
self.timeField.grid(row=0, column=1, sticky=W)

然后在检查它是否为空的if语句中将此更改为红色但它似乎不起作用:

self.timeField.config(highlightbackground="red")
self.timeField.config(highlightcolor="red")

有人可以向我解释为什么这不起作用,我做错了什么,以及解决它的方法?提前谢谢。

更新: 以下是所请求的其余代码:

def start(self):
    waitTime = self.timeField.get()
    password = self.passField.get()

    cTime = str(self.tVers.get())
    self.cTime = cTime

    if waitTime.strip() != "":
        if password.strip() != "":
            if waitTime.isdigit():
                if self.cTime == "Secs":
                    waitTime = int(waitTime)
                elif self.timeVer == "Mins":
                    waitTime = int(waitTime) * 60
                else:
                    waitTime = int(waitTime) * 3600

                self.password = password

                root.withdraw()
                time.sleep(float(waitTime))
                root.deiconify()
                root.overrideredirect(True)
                root.geometry("{0}x{1}+0+0".format(root.winfo_screenwidth(), root.winfo_screenheight()))

                self.tfr.destroy()
                self.mfr.destroy()
                self.bfr.destroy()

                self.create_lockScreen()
            else:
                self.timeField.configure(highlightcolor="red")
        else:
            self.passFields.configure(highlightcolor="red")
    else:
        self.timeField.config(highlightbackground="red", highlightcolor="red")

2 个答案:

答案 0 :(得分:1)

以highlightthickness解决问题

您提供的代码应该可以使用,但您可能会遇到平台实现(即:窗口可能不会像其他平台那样对待highlightthickness)

这是一个应该可行的程序,虽然我还没有在Windows 7上测试过它:

import Tkinter as tk

class Example(tk.Frame):
    def __init__(self, parent):
        tk.Frame.__init__(self, parent)

        self.entry = tk.Entry(self)
        self.button = tk.Button(self, text="Validate", command=self.validate)
        self.entry.pack(side="top", fill="x")
        self.button.pack(side="bottom")

        self.validate() # initialize the border

    def validate(self):
        data = self.entry.get()
        if len(data) == 0:
            self.entry.configure(highlightbackground="red", highlightcolor="red")
        else:
            self.entry.configure(highlightbackground="blue", highlightcolor="blue")


if __name__ == "__main__":
    root = tk.Tk()
    Example(root).pack(fill="both", expand=True)
    root.mainloop()

使用框架模拟边框

另一种解决方案是创建一个边框,其边框略大于按钮。这是一个简单的例子。它不是真正的生产准备,但它说明了重点:

import Tkinter as tk

class Example(tk.Frame):
    def __init__(self, parent):
        tk.Frame.__init__(self, parent)

        self.entry = CustomEntry(self)
        self.button = tk.Button(self, text="Validate", command=self.validate)
        self.entry.pack(side="top", fill="x")
        self.button.pack(side="bottom")

        self.validate() # initialize the border

    def validate(self):
        data = self.entry.get()
        if len(data) == 0:
            self.entry.set_border_color("red")
        else:
            self.entry.set_border_color("blue")

class CustomEntry(tk.Frame):
    def __init__(self, parent, *args, **kwargs):
        tk.Frame.__init__(self, parent)
        self.entry = tk.Entry(self, *args, **kwargs)
        self.entry.pack(fill="both", expand=2, padx=2, pady=2)

        self.get = self.entry.get
        self.insert = self.entry.insert

    def set_border_color(self, color):
        self.configure(background=color)

if __name__ == "__main__":
    root = tk.Tk()
    Example(root).pack(fill="both", expand=True)
    root.mainloop()

答案 1 :(得分:0)

尽管这是一个古老的问题,但我在Windows 10上偶然发现了相同的问题,但是有一个相当简单的解决方案。

除了设置高亮背景和颜色外,还必须将高亮厚度更改为更大的零。 Bryan Oekley在他的答案的标题中提到了它,但是我在他的代码中找不到它,所以这里有一个代码片段。

self.entry = tk.Entry(self, highlightthickness=2)
self.entry.configure(highlightbackground="red", highlightcolor="red")

(这可能是对Bryans Answer的评论)