现在的位置: 首页 > 综合 > 正文

利用System.Media来做声音提醒

2013年10月13日 ⁄ 综合 ⁄ 共 485字 ⁄ 字号 评论关闭

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

抱歉!评论已关闭.