Skip to content
Advertisement

Border colours of canvases (tkinter)

I need help with changing the border colour of a canvas in tkinter

This is my code:

JavaScript

I have tried:

JavaScript

Advertisement

Answer

You can use highlightbackground option to change color of border highlight ring(which is also a border-like thing, but is separate from the actual border). (correction, thanks to Bryan Oakley‘s comment )

To change border highlight ring thickness, you should use highlightthickness option.

JavaScript

Also, if you want to remove that border highlight ring , you can set highlightthickness to 0.

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement