如何:在 Visual Basic 中播放系统声音

更新:2007 年 11 月

此示例使用 My.Computer.Audio.PlaySystemSound 方法来播放系统声音。

My.Computer.Audio.PlaySystemSound 方法使用 SystemSound 类中的一个共享成员作为参数。

示例

使用 My.Computer.Audio.PlaySystemSound 方法来播放指定的系统声音。

系统声音 Asterisk 通常表示错误。有关更多信息,请参见 SystemSound

Sub PlaySystemSound()
    My.Computer.Audio.PlaySystemSound( _
        System.Media.SystemSounds.Asterisk)
End Sub

编译代码

此代码示例只能在 Windows 窗体应用程序或控制台应用程序中运行。有关更多信息,请参见 My.Computer.Audio.PlaySystemSound 方法

请参见

任务

如何:在 Visual Basic 中播放声音

如何:在 Visual Basic 中播放循环声音

如何:在 Visual Basic 中确定文件是否存在

参考

System.Media.SystemSound

My.Computer.Audio.Stop 方法