RichTextBox好像不能直接显示Html格式的文本,现在又不太可能自己去解析,有没有好的方法呢?谢谢
以下是我找到的资料
http://zhidao.baidu.com/question/95339732
http://fckeditor.softonic.cn/extras

解决方案 »

  1.   

    http://www.textcontrol.com/en_US/新版支持WPF
    my blog
    http://ufo-crackerx.blog.163.com/
      

  2.   

    用Developer Express v2009 vol 3的XtraRichEdit控件
      

  3.   

    难道Frame不行吗 NavigationWindow 不行吗
     this.frame.Source = new Uri(@"http://www.baidu.com/s?tn=www235bacom_pg&wd=xiaonei&ie=UTF-8");
      

  4.   

    谢谢各位,用的笨办法解决的,速度较慢:
    在c#中调用 Office 的 Word 组件, 打开*.html文件(word比较智能,能够通过后缀正确显示html),显示的效果跟浏览器中差不多.再将其保存为rft格式,存成临时文件.然后再用c#读入成FlowDocument 类型,传给RichTextBox的Document就行了.