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 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 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 Message

Tkinter Message widget is used to show the message to the user which can not be edited in Python GUI. Its functionality is very similar to the one provided by the Label widget. This widget provides a multiline and noneditable object that displays texts. This contains more than one line. Syntax: The Parameter master represents the parent … Read more

Tkinter Toplevel

Normally Tkinter works with a hierarchical system, in which there is one root window to expand other widgets. To solve this issue Tkinte Toplevel. Tkinter Toplevel widgets work as windows which are directly managed by the window manager. Many numbers of Toplevel applications can be used. Syntax: The parameter, options are used to set various attribute … Read more

Tkinter Listbox

Tkinter Listbox widget provides a list of options to a user in Python GUI. List Box displays all of its options at once where all options are in text format. Syntax: The Parameter master represents the parent window and options can be used as key-value pairs separated by commas. Options of Tkinker Listbox: fg: Show the color used for … Read more

Java Objects and Classes

Java objects and classes are fundamental features of programming. Java is object oriented programming OOP language. Each executable program in java has a class. The class further contains methods and attributes. For example, in real life vehicle is a class and the types of vehicles like car, truck, bike etc. are objects of vehicle class. … 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

Java Modifiers

Java Modifiers are keywords that have a special function. There are two basic types of Java modifiers. Java Access Modifiers Non Access Modifiers Java Access Modifiers Java Access Modifiers are the keywords that define the type of access of variable, method or class. They are written with the definition of class, method or variable. The … Read more

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