zoukankan      html  css  js  c++  java
  • SOS:利用WPF RichTextBox 提取RTF, 莫名丢掉了Underline样式信息

    主代码是这样写的:

     1richTextBox1.SelectAll();
     2richTextBox1.Selection.ApplyPropertyValue(Inline.TextDecorationsProperty, TextDecorations.Underline);
     3System.Drawing.FontStyle style = richTextBox1.DrawingFontStyle();
     4MessageBox.Show(style.ToString());     // <-- result: Underline
     5
     6string rtf = richTextBox1.RTF();
     7richTextBox1.LoadFromRTF(rtf);
     8richTextBox1.SelectAll();
     9style = richTextBox1.DrawingFontStyle();
    10MessageBox.Show(style.ToString());    // <--  result: Regular    
    11

    运行的结果:
    第一次显示: Underline
    第二次显示: Regular
    而RichTextBox里的字体始终是带有下划线的。个人分析的结果为 RichTextBox 提取RTF的字符串丢掉了Underline样式, 那么改如何修正呢?

    提取RTF字符串:

    RTF Extension

    读取RTF:

    Load RTF

     解析FontStyle:

    Get FontStyle

    完整的Source:/Files/anders06/RTFConvertor.zip

  • 相关阅读:
    进程 线程 协程
    TCP的滑动窗口和网络拥塞控制
    Golang中函数结构体,将函数转换为接口
    go的调度 与 go 的GC
    未来程序员这个工种会如何进化与“35岁之殇”的思考
    golang 实现 LRU
    golang 单例模式实现
    内存泄露及内存溢出,解决方案
    Jvm调优参数
    HttpUtil
  • 原文地址:https://www.cnblogs.com/anders06/p/1506889.html
Copyright © 2011-2022 走看看