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 Menubutton Widget.
Python Tkinter Menubutton widget is part of a drop down menu that stays on the screen all the time. Each one of these menubuttons is associated with a Menu widget that can display the options for that menubutton any time the user clicks on it.
Python Tkinter Menubutton widget is part of a drop down menu that stays on the screen all the time. Each one of these menubuttons is associated with a Menu widget that can display the options for that menubutton any time the user clicks on it.
Syntax
The following below is the syntax for create this widget -
w = Menubutton ( master, option, ... )
Parameter Details
- master - This represents the parent window.
- options - Following below is the list of commonly used options for this widget. These options can be used as key-value pairs that are separated by commas.
RECOMMENDED: Python Tkinter Listbox Widget
Sr.No. | Option & Description |
---|---|
1 |
activebackground
The background color when the mouse is over the menubutton.
|
2 |
activeforeground
The foreground color when the mouse is over the menubutton.
|
3 |
anchor
This options controls where the text is positioned if the widget has more space than the text needs. The default is anchor=CENTER, which centers the text.
|
4 |
bg
The normal background color displayed behind the label and indicator.
|
5 |
bitmap
To display a bitmap on the menubutton, set this option to a bitmap name.
|
6 |
bd
The size of the border around the indicator. Default is 2 pixels.
|
7 |
cursor
The cursor that appears when the mouse is over this menubutton.
|
8 |
direction
Set direction=LEFT to display the menu to the left of the button; use direction=RIGHT to display the menu to the right of the button; or use direction='above' to place the menu above the button.
|
9 |
disabledforeground
The foreground color shown on this menubutton when it is disabled.
|
10 |
fg
The foreground color when the mouse is not over the menubutton.
|
11 |
height
The height of the menubutton in lines of text (not pixels!). The default is to fit the menubutton's size to its contents.
|
12 |
highlightcolor
Color shown in the focus highlight when the widget has the focus.
|
13 |
image
To display an image on this menubutton,
|
14 |
justify
This option controls where the text is located when the text doesn't fill the menubutton: use justify=LEFT to left-justify the text (this is the default); use justify=CENTER to center it, or justify=RIGHT to right-justify.
|
15 |
menu
To associate the menubutton with a set of choices, set this option to the Menu object containing those choices. That menu object must have been created by passing the associated menubutton to the constructor as its first argument.
|
16 |
padx
How much space to leave to the left and right of the text of the menubutton. Default is 1.
|
17 |
pady
How much space to leave above and below the text of the menubutton. Default is 1.
|
18 |
relief
Selects three-dimensional border shading effects. The default is RAISED.
|
19 |
state
Normally, menubuttons respond to the mouse. Set state=DISABLED to gray out the menubutton and make it unresponsive.
|
20 |
text
To display text on the menubutton, set this option to the string containing the desired text. Newlines ("\n") within the string will cause line breaks.
|
21 |
textvariable
You can associate a control variable of class StringVar with this menubutton. Setting that control variable will change the displayed text.
|
22 |
underline
Normally, no underline appears under the text on the menubutton. To underline one of the characters, set this option to the index of that character.
|
23 |
width
The width of the widget in characters. The default is 20.
|
24 |
wraplength
Normally, lines are not wrapped. You can set this option to a number of characters and all lines will be broken into pieces no longer than that number.
|
RECOMMENDED: Python Tkinter Frame Widget
Example
Following is a simple example -
from Tkinter import * import tkMessageBox import Tkinter top = Tk() mb= Menubutton ( top, text="condiments", relief=RAISED ) mb.grid() mb.menu = Menu ( mb, tearoff = 0 ) mb["menu"] = mb.menu mayoVar = IntVar() ketchVar = IntVar() mb.menu.add_checkbutton ( label="mayo", variable=mayoVar ) mb.menu.add_checkbutton ( label="ketchup", variable=ketchVar ) mb.pack() top.mainloop()
Output
When the above code is executed, it will produce the following result -
RECOMMENDED: Python Tkinter Canvas Widget
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 Menu Widget.
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.