in Education by
I want a program of mine to show up in the taskbar, but still not have the traditional windows boarder. How can I go about this? I know of self.overrideredirect(1), however this removes my program from the taskbar. This is for Windows 7. JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
I make no claim about this being the 'correct' way to do it, but see if this works for you: try: from tkinter import * except ImportError: from Tkinter import * class NewRoot(Tk): def __init__(self): Tk.__init__(self) self.attributes('-alpha', 0.0) class MyMain(Toplevel): def __init__(self, master): Toplevel.__init__(self, master) self.overrideredirect(1) self.attributes('-topmost', 1) self.geometry('+100+100') self.bind('', self.on_close) #right-click to get out def on_close(self, event): self.master.destroy() if __name__ == '__main__': root = NewRoot() root.lower() root.iconify() root.title('Spam 2.0') app = MyMain(root) app.mainloop()

Related questions

0 votes
    You want to show file extensions in Windows operating system. How will you do so? Select the correct answer from above options...
asked Nov 28, 2021 in Education by JackTerrance
0 votes
    A student says that, if you throw a die, it will show up 1 or not 1. Therefore, the probability of ... this correct? Give reasons. Select the correct answer from above options...
asked Nov 21, 2021 in Education by JackTerrance
0 votes
    Design a view in a map such that if a user selects any state, the profit and sales in the cities under that state would show up....
asked Oct 30, 2020 in Technology by JackTerrance
0 votes
    9)Disk space is a computer maintenance utility included in Microsoft windows designed to free up disk space on a ... true or false Select the correct answer from above options...
asked Dec 22, 2021 in Education by JackTerrance
0 votes
    I'm working on a rather big project with my team and after a while, we struck into a big problem ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jan 16, 2022 in Education by JackTerrance
0 votes
    Write True or false' 1 The taskbar Is located top of the desktop by default. □ 2 The system tray is ... system to function. □ Select the correct answer from above options...
asked Dec 19, 2021 in Education by JackTerrance
0 votes
    Write True or false' 1 The taskbar Is located top of the desktop by default. □ 2 The system tray is ... system to function. □ Select the correct answer from above options...
asked Dec 18, 2021 in Education by JackTerrance
0 votes
    I wrote the following code to quickly grab and display information from Wikipedia. It works great unless the ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 13, 2022 in Education by JackTerrance
0 votes
    So, I am creating an application which displays song lyrics for entered songs, however, longer songs do not ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 21, 2022 in Education by JackTerrance
0 votes
    I have made a chatroom where users can messages to each other but I want to add a upload file ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 20, 2022 in Education by JackTerrance
0 votes
    I'm creating a button in Tkinter and I wanted to create rounded corners, other posts suggested using an ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 16, 2022 in Education by JackTerrance
0 votes
    I want to draw arrows (that change size dynamically) within a Label or any other widget. I have ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 25, 2022 in Education by JackTerrance
0 votes
    I need to find a way to clear the Listbox for the refresh function which I am making. The function should ... clearing the Listbox) Select the correct answer from above options...
asked Jan 18, 2022 in Education by JackTerrance
...