0

我只有文件 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。有任何想法吗?

4

1 回答 1

0

如果你有Uri,你应该使用 上的Source属性MediaElement

mediaControl.Source = myUri;

SetSource如果您有stream对象,则更合适。

于 2013-10-29T17:08:56.113 回答