1 type derived from AdornerDecorator
PresentationFramework (1)
System\Windows\Documents\AdornerDecorator.cs (1)
21internal class NonLogicalAdornerDecorator : AdornerDecorator
5 instantiations of AdornerDecorator
PresentationFramework (4)
System\Windows\Annotations\AnnotationDocumentPaginator.cs (1)
295AdornerDecorator decorator = new AdornerDecorator
System\Windows\Controls\InkCanvas.cs (1)
351_localAdornerDecorator = new AdornerDecorator();
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
1650DefaultConstructor = delegate () { return new System.Windows.Documents.AdornerDecorator(); },
System\Windows\Markup\KnownTypes.cs (1)
1121case KnownElements.AdornerDecorator: o = new System.Windows.Documents.AdornerDecorator(); break;
WindowsFormsIntegration (1)
System\Windows\Integration\ElementHost.cs (1)
68this._decorator = new AdornerDecorator();
21 references to AdornerDecorator
PresentationFramework (18)
System\Windows\Annotations\AnnotationDocumentPaginator.cs (1)
295AdornerDecorator decorator = new AdornerDecorator
System\Windows\Controls\InkCanvas.cs (1)
3058private AdornerDecorator _localAdornerDecorator = null;
System\Windows\Controls\Primitives\DocumentViewerBase.cs (5)
424AdornerDecorator adornerDecorator; 946private AdornerDecorator FindAdornerDecorator(Visual root) 951AdornerDecorator adornerDecorator = null; 968if (fe is AdornerDecorator) 970adornerDecorator = (AdornerDecorator)fe;
System\Windows\Controls\Primitives\PopupRoot.cs (1)
380private AdornerDecorator _adornerDecorator;
System\Windows\Documents\AdornerLayer.cs (2)
316if (parent is AdornerDecorator) 317return ((AdornerDecorator)parent).AdornerLayer;
System\windows\Documents\TextSelection.cs (1)
2463if (element is AdornerDecorator || element is System.Windows.Controls.ScrollContentPresenter)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
98case 4: t = () => typeof(AdornerDecorator); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (4)
4249Type type = typeof(System.Windows.Documents.AdornerDecorator); 4251this.GetXamlType(typeof(System.Windows.Documents.AdornerDecorator)), // DeclaringType 4258SetDelegate = delegate (object target, object value) { ((System.Windows.Documents.AdornerDecorator)target).Child = (System.Windows.UIElement)value; }, 4259GetDelegate = delegate (object target) { return ((System.Windows.Documents.AdornerDecorator)target).Child; }
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
1647typeof(System.Windows.Documents.AdornerDecorator),
System\Windows\Markup\KnownTypes.cs (1)
5552case KnownElements.AdornerDecorator: t = typeof(System.Windows.Documents.AdornerDecorator); break;
System.Windows.Controls.Ribbon (2)
Microsoft\Windows\Controls\KeyTipService.cs (2)
1319AdornerDecorator adornerDecorator = parent as AdornerDecorator;
WindowsFormsIntegration (1)
System\Windows\Integration\ElementHost.cs (1)
50private AdornerDecorator _decorator;