WinForm 文件/文件夹选择

文件选择

private void button2_Click(object sender, EventArgs e)
        {
            OpenFileDialog file = new OpenFileDialog();
            file.ShowDialog();
            this.txtFile.Text = file.SafeFileName;
        }

文件夹选择

private void button1_Click(object sender, EventArgs e)
        {
            FolderBrowserDialog path = new FolderBrowserDialog();
            path.ShowDialog();
            this.txtPath.Text = path.SelectedPath;
        }

你可能感兴趣的:(WinForm 文件/文件夹选择)