My WPF application does not shown in windows task manager application tab but it shown in taskbar and task manager processes tab.
How do I fix this problem? or what is the problem?
My WPF application does not shown in windows task manager application tab but it
Share
Have you set the
WindowStyle="ToolWindow"?If so then that’s why it’s not showing in the Applications tab of Task Manager.
If you were using that style so that you could get rid of the minimize/maximize buttons, then an alternative way is to restyle the Window template.
Or you could use some of the ideas here to change the style of the Window without using a ToolWindow style.