Hello dear readers! welcome back to another section of our tutorial on Python. In this tutorial post, we are going to be discussing about the Python Tkinter Relief Styles.
The relief styles of a widget refers to certain simulated 3-D effects around the outside of the widget.
Below is the list of possible constants, which can be used for the relief attributes -
The relief styles of a widget refers to certain simulated 3-D effects around the outside of the widget.
Below is the list of possible constants, which can be used for the relief attributes -
- FLAT
- RAISED
- SUNKEN
- GROOVE
- RIDGE
RECOMMENDED: Python Tkinter Anchors
Example
from Tkinter import * import Tkinter top = Tkinter.Tk() B1 = Tkinter.Button(top, text ="FLAT", relief=FLAT ) B2 = Tkinter.Button(top, text ="RAISED", relief=RAISED ) B3 = Tkinter.Button(top, text ="SUNKEN", relief=SUNKEN ) B4 = Tkinter.Button(top, text ="GROOVE", relief=GROOVE ) B5 = Tkinter.Button(top, text ="RIDGE", relief=RIDGE ) B1.pack() B2.pack() B3.pack() B4.pack() B5.pack() top.mainloop()
Output
When the above code is executed, it will produce the following result -
RECOMMENDED: Python Tkinter Colors
Alright guys! This is where we are rounding up for this tutorial post. In our next tutorial, we are going to be discussing about the Python Tkinter Bitmaps.
Feel free to ask your questions where necessary and i will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.
Feel free to ask your questions where necessary and i will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.