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