3 implementations of AttachedAnnotations
PresentationFramework (3)
MS\Internal\Annotations\Component\HighlightComponent.cs (1)
59public IList AttachedAnnotations
MS\Internal\Annotations\Component\MarkedHighlightComponent.cs (1)
91public IList AttachedAnnotations
MS\Internal\Controls\StickyNote\StickyNoteAnnotations.cs (1)
964IList IAnnotationComponent.AttachedAnnotations
9 references to AttachedAnnotations
PresentationFramework (9)
MS\Internal\Annotations\Component\AnnotationAdorner.cs (1)
209if (_annotationComponent.AttachedAnnotations.Count > 0)
MS\Internal\Annotations\Component\AnnotationComponentManager.cs (2)
88if (component.AttachedAnnotations.Count == 0) 241if (component.AttachedAnnotations.Count == 0)
MS\Internal\Annotations\Component\MarkedHighlightComponent.cs (6)
1102Debug.Assert((first.AttachedAnnotations != null) && (first.AttachedAnnotations.Count > 0), "first AttachedAnchor is null"); 1104Debug.Assert((second.AttachedAnnotations != null) && (second.AttachedAnnotations.Count > 0), "second AttachedAnchor is null"); 1106TextAnchor firstAnchor = ((IAttachedAnnotation)first.AttachedAnnotations[0]).FullyAttachedAnchor as TextAnchor; 1107TextAnchor secondAnchor = ((IAttachedAnnotation)second.AttachedAnnotations[0]).FullyAttachedAnchor as TextAnchor;