0

如何开发一个在打开 MP3 文件时打开并播放歌曲的媒体播放器。就像在我们的操作系统中单击 MP3 文件时一样,Windows 媒体播放器会打开并播放歌曲。

在我的应用程序中如何处理此功能。

4

1 回答 1

0

To open your app when double clicking on a mp3: use the registry or "Right click mp3, open with, and select your application"

To play the MP3 in your app: You will get the filepath as the first parameter of your 'main' function.

class Program
{
    static void Main(string[] args)
    {
       if (args != null)
       {
         String filePath = args[0];
         SomeForm frm = new SomeForm(filePath );
       }
    }
}
于 2012-11-19T16:39:04.810 回答