0

我想知道是否有任何方法可以访问 Metro 应用程序中的默认媒体播放器。实际上,我正在开发下载视频的地铁应用程序,下载后我想在默认媒体播放器上播放此视频。任何意见请需要帮助。另一种方法是通过启动器运行视频,但视频文件必须位于应用程序所在的本地存储中。我该怎么做??

4

1 回答 1

0

我没有尝试此代码,但如果您尝试喜欢此链接,我认为您可以做点什么

这段代码来自那里

private async void help_Click_1(object sender, RoutedEventArgs e)
{
    string file = "GamesOfThrones.mp4";
    try
    {
        StorageFolder picturesFolder = KnownFolders.PicturesLibrary; //Or any other folders
        Windows.Storage.StorageFile file =
            await picturesFolder.GetFileAsync(file);
        await Windows.System.Launcher.LaunchFileAsync(file);
    }
    catch (Exception exception)
    {
        Debug.WriteLine(exception.Message);
    }
}

这是图片文件夹的示例,在此处获取更多信息:http: //msdn.microsoft.com/en-us/library/windows/apps/jj150593.aspx

于 2013-06-07T14:44:05.410 回答