C# 播放声音
Posted 程序员日志
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# 播放声音相关的知识,希望对你有一定的参考价值。
播放系统声音:
string soundPath = System.Environment.GetFolderPath(System.Environment.SpecialFolder.Windows) + Path.DirectorySeparatorChar + "Media" + Path.DirectorySeparatorChar + "Alarm01.wav"; if (System.IO.File.Exists(soundPath)) { AlertPlayer.SoundLocation = soundPath; AlertPlayer.Load(); AlertPlayer.PlayLooping(); }
以上是关于C# 播放声音的主要内容,如果未能解决你的问题,请参考以下文章