OpenFileDialog 选择多个文件
OpenFileDialog 类提示用户打开文件,默认情况只能选择一个文件。

想要选择多个就要将Multiselect设置为true
OpenFileDialog file = new OpenFileDialog();
file.Multiselect = true;
即可实现文件多选

OpenFileDialog 类提示用户打开文件,默认情况只能选择一个文件。

想要选择多个就要将Multiselect设置为true
OpenFileDialog file = new OpenFileDialog();
file.Multiselect = true;
即可实现文件多选
