利用System.Media来做声音提醒

呵呵,比如输错文字,提醒一下:)
using System.Media;

private void buttonBeep_Click(object sender, EventArgs e)
{
  SystemSounds.Beep.Play();
}

private void buttonExclamation_Click(object sender, EventArgs e)
{
  SystemSounds.Exclamation.Play();
}

private void buttonAsterisk_Click(object sender, EventArgs e)
{
  SystemSounds.Asterisk.Play();
}

private void buttonQuestion_Click(object sender, EventArgs e)
{
  SystemSounds.Question.Play();
}

private void buttonHand_Click(object sender, EventArgs e)
{
  SystemSounds.Hand.Play();
还有好多:)
郁闷,我的博客出了BUG。

posted on 2006-07-22 18:14  萝卜青菜  阅读(529)  评论(1编辑  收藏  举报

导航