Python/Tkinter make a custom window
- by user1435947
I want to make a window without the top taskbar (that is movable), so there is only thin outline around the GUI box. I also want to add my own 'X' to the box.
import Tkinter
class Application(Frame):
def __init__(self, master=None):
Frame.__init__(self, master)
self.parent = master
............
def main():
root = Tk()
root.attributes('-fullscreen', True)
root.geometry('500x250+500+200')
app = Application(root)
app.parent.configure(background = 'gray32')
root.resizable(width=FALSE, height=FALSE)
app.mainloop()
main()
I tried forcing the box to resize after going into fullscreen to remove the taskbar, though box is no longer movable. Any suggestions?
[I have seen this thread: Python/Tkinter: Removing/disabling a resizable window's maximize button under Windows
The -toolwindow attribute didn't work for me, maybe because I use linux...]