Form for modifying settings for the application.
Inheritance: System.Windows.Forms.Form
Ejemplo n.º 1
0
        /// <summary>
        /// Event handler for the tray context menu "Preferences..."
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void ctxTrayPreferences_Click(object sender, EventArgs e)
        {
            ConfigurationForm conf = new ConfigurationForm(ref configuration, ref deviceConfiguration, ref itunes);
            conf.ShowDialog();

        }
Ejemplo n.º 2
0
        /// <summary>
        /// Event handler for the tray context menu "Preferences..."
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void ctxTrayPreferences_Click(object sender, EventArgs e)
        {
            ConfigurationForm conf = new ConfigurationForm(ref configuration, ref deviceConfiguration, ref itunes);

            conf.ShowDialog();
        }