在Visual Studio上禁用音频

本文关键字:音频 Visual Studio | 更新日期: 2023-09-27 18:13:36

我想在我的应用程序中播放。wav声音。我知道怎么做。例如SoundPlayer类:

SoundPlayer player = new SoundPlayer();
player.SoundLocation = @"C:'path'sample.wav";
player.Load();
player.Play();

在家里我有多个应用程序可以播放声音。但是在工作上,我做不到。通常电脑可以发出声音(youtube, Windows Media Player等)。

我调查了我的应用程序没有出现在Volume Mixer.

在Visual Studio上禁用音频

最后是错误的wav文件。我把它转换成mp3格式,然后再转换成wav格式,现在它可以工作了