I would like to know how to create an application in Windows that does not have the default border; particularly the title bar with minimize, maximize, and close buttons.
I’m thinking of writing a ticker program that takes up a narrow space at the top or bottom of the screen, but I won’t attempt it unless it’s possible to make a thin application in Python. Any help with terminology is appreciated; maybe I don’t know how to ask the right question in searching. Does Tkinter have this option?
Thanks
I would like to know how to create an application in Windows that does
Share
I found an example that answered my question here.
overrideredirect(1)is the key function.I like this method because I’m familiar with Tk and preferred a Tk solution, but see the other answers for alternate solutions.
Just need to add your own kill button or quit method.