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);
}
}
展开
 我来答
阳光的雷咩咩
推荐于2016-10-20 · TA获得超过1.4万个赞
知道大有可为答主
回答量:2.3万
采纳率:66%
帮助的人:7811万
展开全部

下面的代码我测试是成功的:

        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似乎和写字板的不一样。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式