/// <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(); }