1 implementation of Parent
PresentationFramework (1)
MS\Internal\Annotations\Anchoring\AttachedAnnotation.cs (1)
177public DependencyObject Parent
13 references to Parent
PresentationFramework (13)
MS\Internal\Annotations\Component\AnnotationComponentManager.cs (2)
143UIElement annotatedElement = attachedAnnotation.Parent as UIElement; // casted from DependencyObject 163UIElement annotatedElement = attachedAnnotation.Parent as UIElement; // casted from DependencyObject
MS\Internal\Annotations\Component\HighlightComponent.cs (1)
171return _attachedAnnotation != null ? (_attachedAnnotation.Parent as UIElement) : null;
MS\Internal\Annotations\Component\MarkedHighlightComponent.cs (1)
147return _attachedAnnotation != null ? (_attachedAnnotation.Parent as UIElement) : null;
MS\Internal\Controls\StickyNote\StickyNoteAnnotations.cs (3)
996&& _attachedAnnotation.Parent is DocumentPageHost) 1089return _attachedAnnotation != null ? _attachedAnnotation.Parent as UIElement : null; 1232_attachedAnnotation != null && _attachedAnnotation.Parent is DocumentPageHost);
System\Windows\Annotations\AnnotationService.cs (5)
999UIElement parent = annotation.Parent as UIElement; 1160aa.Parent == attachedAnnotation.Parent) 1482DependencyObject element = attachedAnnotation.Parent; 1508DependencyObject element = attachedAnnotation.Parent;
System\Windows\Controls\StickyNote.cs (1)
1364DependencyObject parent = _attachedAnnotation.Parent;