我使用OpenFileDialog類來打開並顯示所選的文件名。ListBox Winform問題
List<string> paths;
private void openFileDialog1_FileOk(object sender, CancelEventArgs e)
{
label1.Text = "Now you can save the file paths or remove them from the list above";
paths.Add(openFileDialog1.FileName);
listBox1.DataSource=paths ;//Only one file is displayed in the listbox
Refresh();
}
我想讓用戶選擇幾個文件並顯示他在我有的列表框中選擇的所有文件。問題是每次只顯示一個文件路徑。有趣的是,當我使用pahts.Add時,我添加了新的文件名,但實際上並不是這樣的!?!
+1 - 一個更好的選擇多文件 - 如果用戶想要從不同的位置選擇多個文件,則需要將其與在OP。 – 2011-06-05 17:22:47
中建立列表的方法結合起來,但它仍然不能工作,它只添加一個文件:( – WithFlyingColors 2011-06-05 17:39:39