I have had problems with the behaviour of my windows mobile (6-6.5), compact framework 3.5 application after minimization.
I'm running it in full screen and before my problems was that it would dock below the task bar. This is solved by setting the WindowState to FormWindowState.Maximized. But still my form is positioned behind the task bar in Z-order.
I've tried to call BringToFront() but it has no effect. I've also tried to set TopMost = tre; without any effect.
When I navigate to another form and then back again the form will be correctly positioned at the front, but all I do there are just Form.Hide() and Form.Show();
How can I get my form at the absolute front?