我正在寻找很长时间的解决方案。我想删除 Tk 窗口的标题栏,就像函数“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()