C# 打开文件夹和保存文件夹

            OpenFileDialog sfd = new OpenFileDialog();
            sfd.ShowDialog();
            this.textBox1.Text = sfd.FileName;

            SaveFileDialog sfd = new SaveFileDialog();
            sfd.ShowDialog();

  

posted @ 2017-06-30 16:43  懒人境界  阅读(945)  评论(0编辑  收藏  举报