gpt4 book ai didi

c# - 如何使用 MediaElement.SetPlaybackSource

转载 作者:太空宇宙 更新时间:2023-11-03 15:20:28 26 4
gpt4 key购买 nike

任何人都可以帮助我了解如何使用 UWP MediaElement.SetPlaybackSource 吗?

我经历了this链接,但是无法弄清楚/理解此方法的用法。 MSDN 或网络上的其他地方也没有提供任何示例。谢谢!

最佳答案

这里是 sample code from MSDN :

//Create a new picker
var filePicker = new Windows.Storage.Pickers.FileOpenPicker();

//Add filetype filters. In this case wmv and mp4.
filePicker.FileTypeFilter.Add(".wmv");
filePicker.FileTypeFilter.Add(".mp4");
filePicker.FileTypeFilter.Add(".mkv");

//Set picker start location to the video library
filePicker.SuggestedStartLocation = PickerLocationId.VideosLibrary;

//Retrieve file from picker
StorageFile file = await filePicker.PickSingleFileAsync();

if (file != null)
{
mediaSource = MediaSource.CreateFromStorageFile(file);
mediaElement.SetPlaybackSource(mediaSource);
}

关于c# - 如何使用 MediaElement.SetPlaybackSource,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37573641/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com