How to

list all open forms in Winforms

Published: 27. October 2011 | Updated: 27. October 2011
License: Microsoft Public License (MS-PL)
Categories: Winforms
Tags: C# UI Winforms
Was this snippet helpful for you? YESYES / NONO
foreach (Form form in Application.OpenForms)
{
    ...
}
Send us feedback about this snippet »



Related Snippets: