How do you hide a window showing in task bar - WPF

If you have multiple windows in your application, you may want to show only one window in the task bar and other should be hidden. To do the same set the "ShowInTaskbar" property to false.

window.ShowInTaskbar = false;

No comments:

Post a Comment