상속: 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
파일: XRun.cs 프로젝트: JakeGinnivan/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);
 }