也许我有一个简单的问题,但我对 MSDN 有点困惑。我想用一些东西来播放音乐。我知道这听起来很容易。
private void playMusic(string path) {
using (SoundPlayer player = new SoundPlayer(path)) {
player.PlayLooping();
}
}
这工作正常,但是 .PlayLooping 中的更多声音呢?或改变音量?SoundPlayer 一定有一些解决方案,不是吗?
我想在 MOGRE 程序中使用,首先我尝试使用MogreFreeSL
,但对我来说没用。
我只想要多一个声音的背景音乐,一定很简单。