Python 3 - stili Tkinter Relief

Lo stile di rilievo di un widget si riferisce a determinati effetti 3D simulati attorno all'esterno del widget. Ecco uno screenshot di una fila di pulsanti che mostra tutti i possibili stili di rilievo:

Here is list of possible constants which can be used for relief attribute −

  • FLAT
  • RAISED
  • SUNKEN
  • GROOVE
  • RIDGE

Example

# !/usr/bin/python3
from tkinter import *
import tkinter

top = Tk()

B1 = Button(top, text = "FLAT", relief = FLAT )
B2 = Button(top, text = "RAISED", relief = RAISED )
B3 = Button(top, text = "SUNKEN", relief = SUNKEN )
B4 = Button(top, text = "GROOVE", relief = GROOVE )
B5 = Button(top, text = "RIDGE", relief = RIDGE )

B1.pack()
B2.pack()
B3.pack()
B4.pack()
B5.pack()
top.mainloop()

Result

When the above code is executed, it produces the following result −