3 implementations of AttachedAnnotations
PresentationFramework (3)
MS\Internal\Annotations\Component\HighlightComponent.cs (1)
68public IList AttachedAnnotations
MS\Internal\Annotations\Component\MarkedHighlightComponent.cs (1)
98public IList AttachedAnnotations
MS\Internal\Controls\StickyNote\StickyNoteAnnotations.cs (1)
975IList IAnnotationComponent.AttachedAnnotations
9 references to AttachedAnnotations
PresentationFramework (9)
MS\Internal\Annotations\Component\AnnotationAdorner.cs (1)
213if (_annotationComponent.AttachedAnnotations.Count > 0)
MS\Internal\Annotations\Component\AnnotationComponentManager.cs (2)
93if (component.AttachedAnnotations.Count == 0) 247if (component.AttachedAnnotations.Count == 0)
MS\Internal\Annotations\Component\MarkedHighlightComponent.cs (6)
1105Debug.Assert((first.AttachedAnnotations != null) && (first.AttachedAnnotations.Count > 0), "first AttachedAnchor is null"); 1107Debug.Assert((second.AttachedAnnotations != null) && (second.AttachedAnnotations.Count > 0), "second AttachedAnchor is null"); 1109TextAnchor firstAnchor = ((IAttachedAnnotation)first.AttachedAnnotations[0]).FullyAttachedAnchor as TextAnchor; 1110TextAnchor secondAnchor = ((IAttachedAnnotation)second.AttachedAnnotations[0]).FullyAttachedAnchor as TextAnchor;