我正在尋找示例或幫助創建文件的WPF列表視圖。動態添加WPF ListView項目
<ListView Margin="10,10,0,13" Name="ListView1" HorizontalAlignment="Left"
VerticalAlignment="Top" Width="194" Height="200">
我加載我的文件用這種方法:
private void AddFiles_Click(object sender, RoutedEventArgs e)
{
OpenFileDialog ofd = new OpenFileDialog();
ofd.Multiselect = true;
if (ofd.ShowDialog() == true)
{
string[] filePath = ofd.FileNames;
string[] safeFilePath = ofd.SafeFileNames;
}
}
我應該怎麼辦?
ListView1.Items.Add(...)似乎不工作。實際上,我無法從我的cs代碼中找到ListView1。
我發現了一個列表(的ObservableCollection)信息here
你要顯示一個文件夾或僅將文件中的所有文件由用戶逐一選擇?你最終的結果是什麼? –
問題不在於加載文件。我的問題是添加一些東西到一個列表視圖。 –
關於名稱,請嘗試x:Name而不是Name。 – dowhilefor