Exemplo n.º 1
0
        private void optionsMenuItem_Click(object sender, EventArgs eventArgs)
        {
            ringyOptionsWindow = new RingyOptionsWindow(ringyIconSettings: ref currentRingyIconSettings,
                                                        logoImageLocation: currentPrimaryRingySettings.logoImageLocation);

            setValueForRingyOptionsWindow();
            setEventHandlerForRingyOptionsWindow();
        }
Exemplo n.º 2
0
        private void ringyOptionsWindow_defaultButton_Click(object sender, EventArgs eventArgs)
        {
            currentPrimaryRingySettings = new PrimaryRingySettings();

            savePrimaryRingySettings();
            refreshRingy();

            ringyOptionsWindow.Close();

            ringyOptionsWindow = new RingyOptionsWindow(ref currentRingyIconSettings, currentPrimaryRingySettings.logoImageLocation);
            setValueForRingyOptionsWindow();
            setEventHandlerForRingyOptionsWindow();
        }