1 implementation of Parent
PresentationFramework (1)
MS\Internal\Annotations\Anchoring\AttachedAnnotation.cs (1)
183public DependencyObject Parent
13 references to Parent
PresentationFramework (13)
MS\Internal\Annotations\Component\AnnotationComponentManager.cs (2)
147UIElement annotatedElement = attachedAnnotation.Parent as UIElement; // casted from DependencyObject 167UIElement annotatedElement = attachedAnnotation.Parent as UIElement; // casted from DependencyObject
MS\Internal\Annotations\Component\HighlightComponent.cs (1)
179return _attachedAnnotation != null ? (_attachedAnnotation.Parent as UIElement) : null;
MS\Internal\Annotations\Component\MarkedHighlightComponent.cs (1)
153return _attachedAnnotation != null ? (_attachedAnnotation.Parent as UIElement) : null;
MS\Internal\Controls\StickyNote\StickyNoteAnnotations.cs (3)
1006&& _attachedAnnotation.Parent is DocumentPageHost) 1099return _attachedAnnotation != null ? _attachedAnnotation.Parent as UIElement : null; 1242_attachedAnnotation != null && _attachedAnnotation.Parent is DocumentPageHost);
System\Windows\Annotations\AnnotationService.cs (5)
1011UIElement parent = annotation.Parent as UIElement; 1172aa.Parent == attachedAnnotation.Parent) 1494DependencyObject element = attachedAnnotation.Parent; 1520DependencyObject element = attachedAnnotation.Parent;
System\Windows\Controls\StickyNote.cs (1)
1380DependencyObject parent = _attachedAnnotation.Parent;