我在打开默认媒体播放器时遇到问题,在Windows Phone 8.1中播放视频(来自youtube的流URI)。
当我写入Windows Phone 8.0时,我使用了
MediaPlayerLauncher mediaPlayerLauncher = new MediaPlayerLauncher();
//...
mediaPlayerLauncher.Show();
and now I'm using (Windows Phone 8.1):
bool success = await Windows.System.Launcher.LaunchUriAsync(_videoUrl, options);
通过打开/保存对话框打开IE文件下载。
如果我点击打开,它会打开Windows Media Player并播放我想要的视频
如何跳过保存文件对话框并使用我的Youtube流URI自动打开Windows Media Player?