multiple-windows

C# WinForms, Window Tracking.

Best way to track multiple windows in C# WinForms. For instance, i have an ApplicationContext thats used to manage my application and i have a method thats used to open new windows. public void CreateWindow(RosterItem Roster) { //Check if it is already active, if so, Focus. MessageWindow MessageWindow = new MessageWindow(); Me...