Tkinter Frame

Tkinter Frame widget is used to organize other widgets present in Python GUI. It outlines the frame or structure for a Tkinter window of a fixed size. For better organization of widgets, create Frames within Frames. Syntax: The Parameter master represents the parent window and options can be used as key-value pairs separated by commas. Options of Tkinker Frame: … Read more

Tkinter Scrollbar:

Tkinter Scrollbar is one of the common features of Python GUI’s. The Tkinter Scrollbar is a way to bring the scroll feature to our Python software. This widget is used to add scrolling capability to various widgets, such as list boxes. Syntax: The parameter, master represents the parent window and the options are used to set various attribute as key-values separated … Read more

Tkinter Radio Button

There is a widget in Python GUI which allows the user to choose only one of a predefined set of exclusive options, that widget is known as Tkinter Radio Button. This widget offers a multiple-choice button. Many radio buttons can be used. By using the Tab key you can switch from one radionbutton to another. … Read more

Tkinter Entry

Tkinter Entry is used to take user input in Python GUI. A one-liner box is provided on the interface where the user can input text. It allows multiple line input to increases the height of the entry widget. Syntax: The parameter, master represents the parent window and the options are used to set various attribute as key-values separated by … Read more

Tkinter Menu

Tkinter Menu widget is used to create various types of menus in the Python GUI such as top-level menus, which are displayed right under the title bar of the parent window. Syntax: The Parameter master represents the parent window and options can be used as key-value pairs separated by commas. Options of Tkinker Menu: image: To display an image on this menubutton. … Read more

Tkinter CheckButton

Tkinter Checkbutton is a GUI widget that provides a set of predefined options to the user. Users can select more than one option. A Checkbutton is an option that a user can choose to select or leave. Syntax: The Parameter master represents the parent window and options can be used as key-value pairs separated by commas. Options of … Read more

GUI Standard Attributes

In Python GUI standard attributes are described below, Fonts Colors Cursors Bitmaps Anchors Dimensions Relief styles 1-Fonts: Tkinter font widget is used for styling the text or displaying the text in Python GUI. It has all the properties and the combination of typeface properties such as size, weight, style and slope of each character in … Read more

Tkinter PanedWindow

Tkinter PanedWindow is known as a container widget that contains one or more child widgets and can arrange horizontally or vertically. Each pane contains one widget and each pair of panes is separated by a movable sash. By moving a sash causes the widgets on either side of the sash to be resized. Syntax: The … Read more

Tkinter Spinbox

Tkinter Spinbox is an alternative to the Tkinter Entry widget. It used to select from a fixed number of values. It offers multiple options for developing GUI. Syntax: The parameter, master represents the parent window, and options are used to set various attributes as key-values separated by commas. The options are described below: Options of Tkinker Spinbox: bg: This … Read more

Python GUI Programming

Python GUI Programming provides several different options for writing GUI based programs. These are listed below: Tkinter: It is easiest to start with. Tkinter is Python’s standard GUI (graphical user interface) package. It is the most commonly used toolkit for GUI programming in Python. JPython: It is the Python platform for Java that is providing … Read more