How to Append/Queue Media File to the Current Media Player program in C#.net?
I used:
System.Diagnostics.Process.Start(@"D:\Song1.mp3");
It played the MP3 file with my default Media Play (e.g Window Media Player);
I have another MP3 File (e.g D:\Song2.mp3) that i want to 开发者_StackOverflow社区append/queue to the current Media Player. Anyone please tell me how to do this?
Have you taken a look at Windows Media Player SDK. Once setup you will be able queue/append media file programically.
精彩评论