Amin Mousavi
Amin Mousavi

Reputation: 668

WPF application not displayed in Task Manager

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?

Upvotes: 0

Views: 2188

Answers (1)

Colin Smith
Colin Smith

Reputation: 12540

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.

Upvotes: 2

Related Questions