+ 1
does anyone know how to make a circle button in python (tkinter)
2 Respostas
+ 2
I don't know how to give circular shape to the button but you can add image as the button..
For this, at first you need to add the location of the button image (icon) that should be in .PNG format as follows:-
img = PhotoImage (file = "location of the image file with extension")
And then, in the button widget, you need to add an extra property as follows:
image = img
And at last, set the borderwidth to 0. The command for this is:
borderwidth=0
+ 1
Use circle image as button. Like in html and css