私は C# を使用して Windows ストア アプリケーションに取り組んでいます。FileOpenPicker
FileOpenPicker fileOpenPicker = new FileOpenPicker();
fileOpenPicker.ViewMode = PickerViewMode.List;
fileOpenPicker.FileTypeFilter.Add(".epub");
files = await fileOpenPicker.PickMultipleFilesAsync();
foreach (StorageFile file in files)
{
fileNames.Append(file.Name);
}
ItemGridView2.Items.Add(fileNames.ToString());
これらのファイルを取得した後、Gridview に配置したいファイル名を webview に表示する必要があります。
<GridView x:Name="OutputgridView" Margin="185,182,0,0">
<GridViewItem x:Name="item1" Height="144" Width="556"/>
</GridView>
事前に感謝します。