WPF中,后台读取RTF并显示在RichTextBox的时候报错
WPF中,后台读取RTF并显示在RichTextBox的时候报错代码如下:privatevoidLoadFile(){stringfilename=@"C:\Users\...
WPF中,后台读取RTF并显示在RichTextBox的时候报错
代码如下:
private void LoadFile()
{
string filename = @"C:\Users\XXK\Desktop\1.Rtf";
if (string.IsNullOrEmpty(filename))
{
throw new ArgumentNullException();
}
if (!File.Exists(filename))
{
throw new FileNotFoundException();
}
using (FileStream stream = File.OpenRead(filename))
{
TextRange documentTextRange = new TextRange(textBox1.Document.ContentStart, textBox1.Document.ContentEnd);
string dataFormat = DataFormats.Text;
string ext = System.IO.Path.GetExtension(filename);
documentTextRange.Load(stream, DataFormats.Rtf);
}
} 展开
代码如下:
private void LoadFile()
{
string filename = @"C:\Users\XXK\Desktop\1.Rtf";
if (string.IsNullOrEmpty(filename))
{
throw new ArgumentNullException();
}
if (!File.Exists(filename))
{
throw new FileNotFoundException();
}
using (FileStream stream = File.OpenRead(filename))
{
TextRange documentTextRange = new TextRange(textBox1.Document.ContentStart, textBox1.Document.ContentEnd);
string dataFormat = DataFormats.Text;
string ext = System.IO.Path.GetExtension(filename);
documentTextRange.Load(stream, DataFormats.Rtf);
}
} 展开
1个回答
展开全部
下面的代码我测试是成功的:
private void Button_Click(object sender, RoutedEventArgs e)
{
string rtfFileName = @"D:\test.rtf";
LoadTFR(this.richTextBox1, rtfFileName);
}
private void LoadTFR(RichTextBox rtb, string rtfFileName)
{
TextRange textRange;
FileStream fs;
textRange = new TextRange(rtb.Document.ContentStart, rtb.Document.ContentEnd);
using (fs = new FileStream(rtfFileName, System.IO.FileMode.OpenOrCreate))
{
textRange.Load(fs, DataFormats.Rtf);
}
}
追问
已经可以了,谢谢,是我自己的文件用word改的后缀读不到,改成写字板新建的就可以了,困扰一天竟然是这种问题。还是很谢谢你的回答
追答
我也发现word另存的rtf似乎和写字板的不一样。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询