ダウンロードフォルダーに「StudentDetails」というサブフォルダーがあります。学生名のサブフォルダーが含まれています。各学生名には、その学生に関連する画像が含まれています。デフォルトでは、その StudentDetails フォルダーを開きたい (OnSuggestedStartLocation が目標に到達しない)。そして、左側にすべての学生の名前をリストする必要があります。ユーザーが各学生名をクリックすると、対応するファイルが右側に表示されます。uwpで可能ですか?
FileOpenPicker openPicker = new FileOpenPicker();
openPicker.ViewMode = PickerViewMode.Thumbnail;
openPicker.SuggestedStartLocation = PickerLocationId.Downloads;
foreach (string extension in FileExtensions.Video)
{
openPicker.FileTypeFilter.Add(extension);
}
file = await openPicker.PickSingleFileAsync();