Friday, May 8, 2020

Create a Label widget

By: Archana Shukla And Rajesh Shukla To add a label to our previous example, we will create a label using the label class like this: lbl = Label(window, text=”Hello”) Then we will set its position on the form using the grid function and give it the location like this: lbl.grid(column=0, row=0) So the complete code will be like this: from tkinter import * window = Tk() window.title("Welcome to tKinter") lbl = Label(window, text="Hello") lbl.grid(column=0,...

Creating our first GUI application

By: Archana Shukla And Rajesh Shukla In order to create our first GUI application we have to import Tkinter package and create a window and set its title: code: from tkinter import * window = Tk() window.title("Welcome to tKinter") window.mainloop() Output: The result will be like this: Great!! Our application just works. The last line which calls mainloop function, this function calls the endless loop of the window, so the window...

Introduction to Python tKinter

By: Archana Shukla And Rajesh Shukla Tkinter Programming Tkinter is the standard GUI library for Python. Python when combined with Tkinter provides a fast and easy way to create GUI applications. Tkinter provides a powerful object-oriented interface to the Tk GUI toolkit. Python has a lot of GUI frameworks, but Tkinter is the only framework that’s built into the Python standard library. Tkinter has several strengths. It’s cross-platform, so the same code works on Windows, macOS, and Linux. Visual elements are rendered using native operating...