【原】c# 文件另存为对话框

                Stream myStream;
                SaveFileDialog saveFileDialog1 = new  SaveFileDialog();

                saveFileDialog1.Filter = "txt files   (*.txt)|*.txt";
                saveFileDialog1.FilterIndex = 2;
                saveFileDialog1.RestoreDirectory = true;

                if (saveFileDialog1.ShowDialog() == DialogResult.OK)
                {
                    if ((myStream = saveFileDialog1.OpenFile()) != null)
                    {
                        using (StreamWriter sw = new StreamWriter(myStream))
                        {
                            sw.Write("this is the text");
                        }
                        
                        myStream.Close();
                        MessageBox.Show("Saved");
                    }
                } 

 

 

作者:Tony zhao 欢迎访问:找与淘网

出处:http://www.cnblogs.com/ytaozhao 本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。

相关文章:

  • 2021-09-06
  • 2022-03-06
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-11
  • 2022-12-23
  • 2021-08-10
  • 2022-12-23
相关资源
相似解决方案