public FormSoundNotifyConfig(SoundNotifier module)
     : this()
 {
     this.ParentModule = module;
     this.Text = String.Format("Sound Notify ({0})", ParentModule.Player);
     numericUpDownQueueDelay.Value = Convert.ToDecimal(ParentModule.Settings.Value.QueueDefDelay);
     textBoxQueSoundName.Text = ParentModule.GetQueueSoundForUI();
     UpdateMutedState();
 }