1 instantiation of AnnotationComponentChooser
PresentationFramework (1)
src\Framework\System\Windows\Annotations\AnnotationService.cs (1)
570internal 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)
155AnnotationComponentChooser chooser = AnnotationService.GetChooser(annotatedElement);
src\Framework\System\Windows\Annotations\AnnotationService.cs (3)
570internal static readonly DependencyProperty ChooserProperty = DependencyProperty.RegisterAttached("Chooser", typeof(AnnotationComponentChooser), typeof(AnnotationService), new FrameworkPropertyMetadata(new AnnotationComponentChooser(), FrameworkPropertyMetadataOptions.Inherits | FrameworkPropertyMetadataOptions.OverridesInheritanceBehavior)); 577internal static AnnotationComponentChooser GetChooser(DependencyObject d) 582return (AnnotationComponentChooser)d.GetValue(ChooserProperty);