multiple window/frames in tkinter gui with python
* Video Link:-
https://youtu.be/AUxiuQNG77Y
* Details:-
In this tutorial, we created a parent frame and 2 child frames.
(A). Parent Frame:-
import tkinter as tk
#create parent frame
root=tk.Tk()
#set title of parent frame
root.title('Parent Frame')
#set background color of frame
root.configure(bg='cyan')
#make full screen frame
root.state('zoomed')
(B). Child frame
#create child frame
child=tk.Toplevel(root)
#set title of child frame
root.title('Child Frame')
#set background color of frame
child.configure(bg='brown')
#set width and height of child frame
child.geometry('300x200')
#set child frame on top of parent frame
child.tkraise()
For All process, please watch our full Video.
Link of video is given above.
* Hashtags:- #coding #programming #pandas #pythonprogramming #pythonlearning #pythoncoding #pythontutorial #tutorial
#tkinter, #python, #forms, #window, #frames