How To Create Frameless Window in TKinter Python GUI
from tkinter import * #import tkinter library
root= Tk() #instance tkinter frame
root.geometry("800x350+450+86") #size of window
root.config(bg="#CAFF70") # window background color
lbl= Label(root, text= "This is Johny Hasan", font=('Time New Roman', 35,"bold"), fg="red") #To Create Label
lbl.pack()
root.overrideredirect(True) #This command make the window borderless
root.mainloop()
root.overrideredirect(True) #This command make the window borderless
root.mainloop()
إرسال تعليق