Widget-specific options

We do not reproduce all widget-specific options. You can obtain all available options for a given widget in the Python interactive shell using the help command.

To obtain help on any Tkinter class, you first import Tkinter into the namespace like:

>>>import Tkinter

The following commands can then be used to get information on a particular widget:

Widget Name

Getting Help

Label

help(Tkinter.Label)

Button

help(Tkinter.Button)

Canvas

help(Tkinter.Canvas)

CheckButton

help(Tkinter.Checkbutton)

Entry

help(Tkinter.Entry)

Frame

help(Tkinter.Frame)

LabelFrame

help(Tkinter.LabelFrame)

Listbox

help(Tkinter.Listbox)

Menu

help(Tkinter.Menu)

Menubutton

help(Tkinter.Menubutton)

Message

help(Tkinter.Message)

OptionMenu

help(Tkinter.OptionMenu)

PanedWindow

help(Tkinter.PanedWindow)

RadioButton

help(Tkinter.Radiobutton)

Scale

help(Tkinter.Scale)

Scrollbar

help(Tkinter.Scrollbar)

Spinbox

help(Tkinter.Spinbox)

Text

help(Tkinter.Text)

Bitmap Class

help(Tkinter.BitmapImage)

Image Class

help(Tkinter.Image)

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
3.14.129.194