ในการลบแถบชื่อเรื่องของหน้าต่าง Tkinter เราสามารถใช้ wm_attributes('type', 'value') โดยระบุประเภททรัพย์สิน ในตัวอย่างต่อไปนี้ เราจะใช้ 'เต็มหน้าจอ ' ค่าบูลีนที่ลบแถบชื่อเรื่องของหน้าต่าง
ตัวอย่าง
#Import the tkinter library from tkinter import * #Create an instance of tkinter frame win = Tk() win.geometry("700x350") #Create a Label to print the Name label= Label(win, text="This is a New Line Text", font= ('Helvetica 14 bold'), foreground= "red3") label.pack() win.wm_attributes('-fullscreen', 'True') win.mainloop()
ผลลัพธ์
การเรียกใช้โค้ดด้านบนจะแสดงหน้าต่างเต็มหน้าจอโดยไม่มีแถบชื่อเรื่อง