AGS.Editor.GUIController.ShowPreferencesEditor C# (CSharp) Метод

ShowPreferencesEditor() публичный Метод

public ShowPreferencesEditor ( ) : void
Результат void
        public void ShowPreferencesEditor()
        {
            PreferencesEditor prefsEditor = new PreferencesEditor(_agsEditor.Preferences);
            if (prefsEditor.ShowDialog() == DialogResult.OK)
            {
                _agsEditor.Preferences.SaveToRegistry();
                //_mainForm.SetProjectTreeLocation(_agsEditor.Preferences.ProjectTreeOnRight);
            }
            prefsEditor.Dispose();
        }
GUIController