c# - Set Window almost Topmost -


i code editor, should have fullscreen-mode (editor covers 100% of screen, taskbar not visible). "set window topmost" say, here´s problem: editor runs external programs, have visible.

my editor should hide taskbar, not topmost other applications. possible? , how?

you don't need topmost window cover taskbar. creating borderless maximized window enough:

    public mainwindow() {         initializecomponent();         this.windowstate = system.windows.windowstate.maximized;         this.resizemode = system.windows.resizemode.noresize;     } 

you still need way user activate window of application. isn't clear had in mind, alt+tab works.


Comments