c# 用openfiledialog打开一个txt文件并显示在richtextbox中,谢谢!!

2024-12-01 20:21:51
推荐回答(3个)
回答1:

你这样做:
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();

这样应该就可以了。

回答2:

rtbeditor.LoadFile(openFileDialog1.FileName, RichTextBoxStreamType.PlainText);
rtbeditor 为richtextbox的NAME

回答3:

MSDN上输入open……有实例