我不知道我是否正確地做了這件事。 在這裏,我試圖發揮所有在WPF C#中的視頻文件夾中的視頻,但它只能播放最後一個視頻,我怎麼能解決這個試圖在wpf中播放多個視頻,但它只拍攝最後一個視頻
// Go to video folder.
var videosFolder = KnownFolders.VideosLibrary;
// Here i get all the files in the video folder.
var files = await videosFolder.GetFilesAsync();
// If there is no file do nothing.
if (files.Count == 0)
{
return;
}
// Here i am looping all the videos.
foreach (var video in files)
{
// Accessing each file in the video folder.
var file = await StorageFile.GetFileFromPathAsync(video.Path);
// ...
if (file == null)
{
return;
}
// Getting the path of a file.
var source = MediaSource.CreateFromStorageFile(file);
// ...
VideoPlayer.SetPlaybackSource(source);
}
這是什麼'VideoPlayer'?您能否提供[最小,完整和可驗證](http://stackoverflow.com/help/mcve)示例? – slawekwin
media元素表單xaml,對不起。 – Thembalethu
我沒有看到['System.Windows.Controls.MediaElement'](https://msdn.microsoft.com/en-us/library/system.windows.controls.mediaelement)具有'SetPlaybackSource'方法 – slawekwin