예제 #1
0
        private void ToolMenu_Other_Mute_Click(object sender, EventArgs e)
        {
            try {
                _volumeManager.ToggleMute();
            } catch (Exception) {
            }

            SetMuteIcon();
        }
        private void ToolMenu_Other_Mute_Click(object sender, EventArgs e)
        {
            try {
                _volumeManager.ToggleMute();
            } catch (Exception) {
                System.Media.SystemSounds.Beep.Play();
            }

            SetVolumeState();
        }