【原】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 本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。

posted @ 2012-07-02 13:42  Tony Zhao  阅读(12813)  评论(0编辑  收藏  举报