1 instantiation of AnnotationComponentChooser
PresentationFramework (1)
src\Framework\System\Windows\Annotations\AnnotationService.cs (1)
570
internal static readonly DependencyProperty ChooserProperty = DependencyProperty.RegisterAttached("Chooser", typeof(AnnotationComponentChooser), typeof(AnnotationService), new FrameworkPropertyMetadata(new
AnnotationComponentChooser
(), FrameworkPropertyMetadataOptions.Inherits | FrameworkPropertyMetadataOptions.OverridesInheritanceBehavior));
4 references to AnnotationComponentChooser
PresentationFramework (4)
src\Framework\MS\Internal\Annotations\Component\AnnotationComponentManager.cs (1)
155
AnnotationComponentChooser
chooser = AnnotationService.GetChooser(annotatedElement);
src\Framework\System\Windows\Annotations\AnnotationService.cs (3)
570
internal static readonly DependencyProperty ChooserProperty = DependencyProperty.RegisterAttached("Chooser", typeof(
AnnotationComponentChooser
), typeof(AnnotationService), new FrameworkPropertyMetadata(new AnnotationComponentChooser(), FrameworkPropertyMetadataOptions.Inherits | FrameworkPropertyMetadataOptions.OverridesInheritanceBehavior));
577
internal static
AnnotationComponentChooser
GetChooser(DependencyObject d)
582
return (
AnnotationComponentChooser
)d.GetValue(ChooserProperty);