Microsoft Communities

Welcome to WindowsClient.net | Sign in | Join

Here are some frequently asked questions about Windows Forms and their answers.

Windows Forms FAQs

How do I create a form that is 'TopMost' for only my application, but not other applications?

You can do this by setting the child form's TopMost to False and setting its Owner property to the Main Form.

Form1 f = new Form1(); 
f.TopMost = false; 
f.Owner = this; 
f.Show(); 

Contributed from George Shepherd's Windows Forms FAQ



Page view counter