我只有文件 Uri 可以在 MediaElement 中打开。如何将 _MediaElement.SetSource 与 Uri 一起使用?我的方法是基于这个例子:
var file = await openPicker.PickSingleFileAsync();
var stream = await file.OpenAsync(Windows.Storage.FileAccessMode.Read);
mediaControl.SetSource(stream, file.ContentType);
但是,我只有文件中的 Uri。有任何想法吗?