I need to be sure that all forms will be closed if I user somehow close the main form. So I decied to hide Close() function and I wrote sth like this
public new bool Close()
{
List<Form> formsList = new List<Form>(Application.OpenForms.Count);
foreach (var form in Application.OpenForms)
formsList.Add((Form)form);
formsList.Reverse();
foreach (var form in formsList)
{
if (form.IsDisposed) continue;
Invoke(new GenericEventHandler(() => { form.Close(); }));
}
return Application.OpenForms.Count == 0;
}
So if all forms are closed sucessfully I return true and thanks to this I know that user can be logged out from application.
However it seems that form.Close() function is not fired imediatelly. After calling form.Close() formclosed event is not fired imediatelly as well as collection Application.OpenForms is not modified. The amoount of opened forms is noted changed. What could be a reason ?