3 implementations of AttachedAnnotations
PresentationFramework (3)
src\Framework\MS\Internal\Annotations\Component\HighlightComponent.cs (1)
75public IList AttachedAnnotations
src\Framework\MS\Internal\Annotations\Component\MArkedHighlightComponent.cs (1)
105public IList AttachedAnnotations
src\Framework\MS\Internal\Controls\StickyNote\StickyNoteAnnotations.cs (1)
991IList IAnnotationComponent.AttachedAnnotations
9 references to AttachedAnnotations
PresentationFramework (9)
src\Framework\MS\Internal\Annotations\Component\AnnotationAdorner.cs (1)
219if (_annotationComponent.AttachedAnnotations.Count > 0)
src\Framework\MS\Internal\Annotations\Component\AnnotationComponentManager.cs (2)
98if (component.AttachedAnnotations.Count == 0) 253if (component.AttachedAnnotations.Count == 0)
src\Framework\MS\Internal\Annotations\Component\MArkedHighlightComponent.cs (6)
1128Debug.Assert((first.AttachedAnnotations != null) && (first.AttachedAnnotations.Count > 0), "first AttachedAnchor is null"); 1130Debug.Assert((second.AttachedAnnotations != null) && (second.AttachedAnnotations.Count > 0), "second AttachedAnchor is null"); 1132TextAnchor firstAnchor = ((IAttachedAnnotation)first.AttachedAnnotations[0]).FullyAttachedAnchor as TextAnchor; 1133TextAnchor secondAnchor = ((IAttachedAnnotation)second.AttachedAnnotations[0]).FullyAttachedAnchor as TextAnchor;