如何让OpenFileDialog1对象将所选文件的多个路径返回到多行文本框?
答案 0 :(得分:0)
我已经为您创建了一些代码:
private void SomeMethod()
{
string[] lines = GetFileNames();
if (lines != null)
textBox1.Lines = lines;
}
private string[] GetFileNames()
{
var dialog = new OpenFileDialog()
{
Multiselect = true
};
if (dialog.ShowDialog() == DialogResult.OK)
return dialog.FileNames;
else
return null;
}
我希望它有所帮助。