.NET grouping forms so that pulling up the primary form shows all other forms?
Posted
by toasteroven
on Stack Overflow
See other posts from Stack Overflow
or by toasteroven
Published on 2010-03-24T19:59:49Z
Indexed on
2010/03/24
20:03 UTC
Read the original article
Hit count: 144
I have an app that can open up some other forms at the user's request, and they're set to not show in the taskbar. The problem is, if one of the secondary windows becomes hidden by another app, switching to the primary window only brings that form to the forefront.
Is there a good way to "group" the forms so that giving any of them focus brings the whole group to the front? I tried calling BringToFront()
on each form in the primary form's Activated
event, but that also gives the secondary forms focus, making it impossible to interact with the primary form.
© Stack Overflow or respective owner