c# 用openfiledialog打开一个txt文件并显示在richtextbox中,谢谢!!
3个回答
展开全部
你这样做:
1.应用命名空间:using System.IO
2.在按钮button1中的点击事件中添加如此代码:
this.openFileDialog1.ShowDialog();
string filePath = this.openFileDialog1.FileName;
StreamReader sReader = new StreamReader(filePath, Encoding.Default);
this.richTextBox1.Text = sReader.ReadToEnd();
sReader.Dispose();
这样应该就可以了。
1.应用命名空间:using System.IO
2.在按钮button1中的点击事件中添加如此代码:
this.openFileDialog1.ShowDialog();
string filePath = this.openFileDialog1.FileName;
StreamReader sReader = new StreamReader(filePath, Encoding.Default);
this.richTextBox1.Text = sReader.ReadToEnd();
sReader.Dispose();
这样应该就可以了。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
rtbeditor.LoadFile(openFileDialog1.FileName, RichTextBoxStreamType.PlainText);
rtbeditor 为richtextbox的NAME
rtbeditor 为richtextbox的NAME
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
MSDN上输入open……有实例
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询