1 implementation of Parent
PresentationFramework (1)
MS\Internal\Annotations\Anchoring\AttachedAnnotation.cs (1)
176public DependencyObject Parent
13 references to Parent
PresentationFramework (13)
MS\Internal\Annotations\Component\AnnotationComponentManager.cs (2)
141UIElement annotatedElement = attachedAnnotation.Parent as UIElement; // casted from DependencyObject 161UIElement annotatedElement = attachedAnnotation.Parent as UIElement; // casted from DependencyObject
MS\Internal\Annotations\Component\HighlightComponent.cs (1)
170return _attachedAnnotation != null ? (_attachedAnnotation.Parent as UIElement) : null;
MS\Internal\Annotations\Component\MarkedHighlightComponent.cs (1)
146return _attachedAnnotation != null ? (_attachedAnnotation.Parent as UIElement) : null;
MS\Internal\Controls\StickyNote\StickyNoteAnnotations.cs (3)
995&& _attachedAnnotation.Parent is DocumentPageHost) 1088return _attachedAnnotation != null ? _attachedAnnotation.Parent as UIElement : null; 1231_attachedAnnotation != null && _attachedAnnotation.Parent is DocumentPageHost);
System\Windows\Annotations\AnnotationService.cs (5)
993UIElement parent = annotation.Parent as UIElement; 1154aa.Parent == attachedAnnotation.Parent) 1476DependencyObject element = attachedAnnotation.Parent; 1502DependencyObject element = attachedAnnotation.Parent;
System\Windows\Controls\StickyNote.cs (1)
1335DependencyObject parent = _attachedAnnotation.Parent;