如何在不使用 overrideredirect() 方法的情况下移除 Tkinter 窗口中的标题栏?
要移除 Tkinter 窗口的标题栏,我们可以使用wm_attributes('type', 'value') 方法,指定属性的类型。在如下示例中,我们会使用 'fullscreen',一个移除窗口标题栏的布尔值。
示例
#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()
输出
运行上述代码会显示一个无标题栏的全屏窗口。
广告