public void CreatePopupForm() { if (SelectionPopupForm == null) { _showPropsButton.Enabled = false; SelectionPopupForm = new SelectionPopupForm(PopupFormClosing); SelectionPopupForm.Show(); } }
public void Dispose() { if (SelectionPopupForm != null) { SelectionPopupForm.Close(); SettingsManager.GetRef().GuiSettings.ShowProperties = true; } else { SettingsManager.GetRef().GuiSettings.ShowProperties = false; } SelectionPopupForm = null; }