我想要 btn1.Click 上的以下内容:
if (btn1.Enabled == false) System.Media.SystemSounds.Beep.Play();
尽管 btn1 被禁用,有没有办法播放哔声?
实际上,默认情况下我需要这样的东西:
foreach (controls c in Form1.Controls)
if (c is clicked && c.Enabled == false)
System.Media.SystemSounds.Beep.Play();