Python Tkinter删除标题栏

时间:2012-08-07 20:29:19

标签: python user-interface tkinter title

我正在寻找很长时间来解决这个问题。我想删除Tk窗口的Titlebar,就像使用函数“overridedirect()”一样。我的问题是,操作系统的任务栏上没有图标。 我也尝试用“root.attributes(” - fullscreen“,1)”并尝试将其缩小,但这也不起作用。 我希望有人知道一个很好的解决方案,谢谢你的帮助!

我的代码现在看起来有点像这样:

from tkinter import *

class Main(Frame):
    def __init__(self, root):
**...**
#There are more classes after this one, but defined the same way

def main():
    root = Tk()
    root.geometry("800x400+0+0")
    root.minsize(700, 400)
    root.title("Title")
    #root.overrideredirect(True)
    #root.iconify()
    ##root.attributes('-topmost', 1)
    ##root.attributes("-fullscreen",  1)
    ##root.wm_state("zoomed")

if __name__ == "__main__":
    main()

1 个答案:

答案 0 :(得分:0)

你无法做你想做的事。您可以没有标题栏也没有图标,或者您可以拥有标题栏和图标。没有另一个就无法获得一个。