1 implementation of Parent
PresentationFramework (1)
src\Framework\MS\Internal\Annotations\Anchoring\AttachedAnnotation.cs (1)
187public DependencyObject Parent
13 references to Parent
PresentationFramework (13)
src\Framework\MS\Internal\Annotations\Component\AnnotationComponentManager.cs (2)
152UIElement annotatedElement = attachedAnnotation.Parent as UIElement; // casted from DependencyObject 172UIElement annotatedElement = attachedAnnotation.Parent as UIElement; // casted from DependencyObject
src\Framework\MS\Internal\Annotations\Component\HighlightComponent.cs (1)
189return _attachedAnnotation != null ? (_attachedAnnotation.Parent as UIElement) : null;
src\Framework\MS\Internal\Annotations\Component\MArkedHighlightComponent.cs (1)
162return _attachedAnnotation != null ? (_attachedAnnotation.Parent as UIElement) : null;
src\Framework\MS\Internal\Controls\StickyNote\StickyNoteAnnotations.cs (3)
1022&& _attachedAnnotation.Parent is DocumentPageHost) 1114return _attachedAnnotation != null ? _attachedAnnotation.Parent as UIElement : null; 1257_attachedAnnotation != null && _attachedAnnotation.Parent is DocumentPageHost);
src\Framework\System\Windows\Annotations\AnnotationService.cs (5)
1048UIElement parent = annotation.Parent as UIElement; 1212aa.Parent == attachedAnnotation.Parent) 1534DependencyObject element = attachedAnnotation.Parent; 1560DependencyObject element = attachedAnnotation.Parent;
src\Framework\System\Windows\Controls\StickyNote.cs (1)
1390DependencyObject parent = _attachedAnnotation.Parent;