tags:

views:

36

answers:

1

If I have a XAML window that I show with ShowDialog, is there a way to make it (not) appear in the taskbar?

The problem is that I can set the window to be topmost but if that window opens another dialog and I set that also to be topmost, I can put the second behind the first by clicking in the taskbar. This tends to confuse users.

+1  A: 

In your child window, set the ShowInTaskbar property to false.

Tim Trout
Yeah I guess there really is no substitute for reading the intellisense is there? Thanks @Tim
griegs