WinForm 弹出保存对话框_休闲

实现上面那种弹出保存对话框的代码如下:

 

            FolderBrowserDialog fd = new FolderBrowserDialog();

            if (fd.ShowDialog(this) == DialogResult.OK)

            {

                MessageBox.Show(fd.SelectedPath);

            }