Exemplo n.º 1
0
        private void expertSettingsBtn_Click(object sender, EventArgs e)
        {
            if (!CheckValidTimes())
            {
                return;
            }

            WriteGeneralSettings();                                      // Get the changes to the general options object before getting into expert settings so it is reflected (don't save it)

            GeneralOptions             go  = _mceOptions.GeneralOptions; // Get a copy of the GO
            SettingsSystemSettingsForm esf = new SettingsSystemSettingsForm(go);

            esf.ShowDialog();

            _mceOptions.UpdateGeneralOptions(go, false); // Update it
        }