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