简体   繁体   中英

How do I change the border color of a tkinter widget?

I've been trying to configure the border colour of a widget in Tkinter, and I was wondering how to do that....

I've checked on StackOverflow, and it says that I should use the configure option and then set highlightbackgroundcolor = {insert color here} . I've tried that and nothing has worked. Can someone please show me a working sample of code so I can figure it out?

There is no way to change the border color of a widget, the border color is tied to the background color of the widget. Instead, you can turn off the border, and then use a frame widget where you can set the background color of the frame.

截屏

import tkinter as tk

root = tk.Tk()

label_border = tk.Frame(root, background="red")
label = tk.Label(label_border, text="This has a red border", bd=0)
label.pack(fill="both", expand=True, padx=1, pady=1 )

label_border.pack(padx=20, pady=20)

root.mainloop()

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM