码迷,mamicode.com
首页 > 其他好文 > 详细

如何找到文件的家-打开文件对话框openFileDialog

时间:2014-12-14 22:37:12      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   sp   on   文件   

private void button1_Click(object sender, EventArgs e)
        {
            openFileDialog1.Filter = "*.txt|*.txt";//设置文件
            DialogResult dr = openFileDialog1.ShowDialog();//显示打开文件对话框
            if (dr ==DialogResult.OK)
            {
                richTextBox1.Text = System.IO.File.ReadAllText(openFileDialog1.FileName, Encoding.Default);
            }
        }
运行结果如图所示:
bubuko.com,布布扣
bubuko.com,布布扣

 

如何找到文件的家-打开文件对话框openFileDialog

标签:style   blog   http   io   ar   color   sp   on   文件   

原文地址:http://www.cnblogs.com/leijiangtao/p/4163144.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!