Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Main form not shown in Taskbar

What could be the reasons for the Main application form not to be shown in TaskBar?

ShowInTaskbar property is set to "true", but form doesn't show itself there if after running the application and before the Main form appears I switch to some other window. Form exists, but until I minimize apps that are above to make it visible, it won't show in Taskbar.

UPDATE. Form does not have an Owner.

like image 742
26071986 Avatar asked Nov 15 '10 11:11

26071986


1 Answers

I've added form.Activate() after form.Show(). Now it always jumps out when completely loaded, and doesn't get lost under some other screens.

Though it is not a solution, but a crutch, responses are welcome anyway.

like image 83
26071986 Avatar answered Nov 10 '22 03:11

26071986