1 instantiation of AnnotationComponentChooser
PresentationFramework (1)
System\Windows\Annotations\AnnotationService.cs (1)
547internal 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)
MS\Internal\Annotations\Component\AnnotationComponentManager.cs (1)
150AnnotationComponentChooser chooser = AnnotationService.GetChooser(annotatedElement);
System\Windows\Annotations\AnnotationService.cs (3)
547internal static readonly DependencyProperty ChooserProperty = DependencyProperty.RegisterAttached("Chooser", typeof(AnnotationComponentChooser), typeof(AnnotationService), new FrameworkPropertyMetadata(new AnnotationComponentChooser(), FrameworkPropertyMetadataOptions.Inherits | FrameworkPropertyMetadataOptions.OverridesInheritanceBehavior)); 554internal static AnnotationComponentChooser GetChooser(DependencyObject d) 558return (AnnotationComponentChooser)d.GetValue(ChooserProperty);