Inheritance: XInline
示例#1
0
文件: XRun.cs 项目: WELL-E/XText
 protected bool Equals(XRun other)
 {
     return
         (base.Equals(other) &&
          Equals(textBinding != null ? textBinding.Path : null, other.textBinding != null ? other.textBinding.Path : null) &&
          string.Equals(style, other.style));
 }
示例#2
0
 protected bool Equals(XRun other)
 {
     return
         base.Equals(other) &&
         Equals(textBinding != null ? textBinding.Path : null, other.textBinding != null ? other.textBinding.Path : null) &&
         string.Equals(style, other.style);
 }