C#之WinForm基础 得到文件对话框(一次只能打开多个文件)打开文件们的绝对路径

时间:2021-05-22 12:21:54
       慈心积善融学习,技术愿为有情学。善心速造多好事,前人栽树后乘凉。我今于此写经验,愿见文者得启发。


1、UI

C#之WinForm基础 得到文件对话框(一次只能打开多个文件)打开文件们的绝对路径


2、代码

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace WindowsFormsApplication3
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            OpenFileDialog ofd = new OpenFileDialog();
            
            //一次可以选择多个文件
            ofd.Multiselect = true;

            ofd.ShowDialog();

            string[] paths = ofd.FileNames;

            for (int i = 0; i < paths.Length; i++)
            {
                listBox1.Items.Add(paths[i]);
            }
        }

        private void Form1_Load(object sender, EventArgs e)
        {

        }
    }
}




3、效果1

C#之WinForm基础 得到文件对话框(一次只能打开多个文件)打开文件们的绝对路径


效果2

C#之WinForm基础 得到文件对话框(一次只能打开多个文件)打开文件们的绝对路径





感恩曾经帮助过 心少朴 的人。
C#优秀,值得学习。Winform,WPF 都可以关注一下,眼界要开阔。
Visual Studio IDE很好用,推荐!
注:此文是自学笔记所生,质量中等,故要三思而后行。新手到此,不可照搬,应先研究其理象数,待能变通之时,自然跳出深坑。