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