WinForm 弹出保存对话框

 

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

 

            FolderBrowserDialog fd = new FolderBrowserDialog();

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

            {

                MessageBox.Show(fd.SelectedPath);

            }

 

你可能感兴趣的:(职场,WinForm,对话框,休闲)