1 type derived from AdornerDecorator
PresentationFramework (1)
System\Windows\Documents\AdornerDecorator.cs (1)
20internal class NonLogicalAdornerDecorator : AdornerDecorator
5 instantiations of AdornerDecorator
PresentationFramework (4)
System\Windows\Annotations\AnnotationDocumentPaginator.cs (1)
294AdornerDecorator decorator = new AdornerDecorator
System\Windows\Controls\InkCanvas.cs (1)
350_localAdornerDecorator = new AdornerDecorator();
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
1649DefaultConstructor = delegate () { return new System.Windows.Documents.AdornerDecorator(); },
System\Windows\Markup\KnownTypes.cs (1)
1120case KnownElements.AdornerDecorator: o = new System.Windows.Documents.AdornerDecorator(); break;
WindowsFormsIntegration (1)
System\Windows\Integration\ElementHost.cs (1)
67this._decorator = new AdornerDecorator();
21 references to AdornerDecorator
PresentationFramework (18)
System\Windows\Annotations\AnnotationDocumentPaginator.cs (1)
294AdornerDecorator decorator = new AdornerDecorator
System\Windows\Controls\InkCanvas.cs (1)
3057private AdornerDecorator _localAdornerDecorator = null;
System\Windows\Controls\Primitives\DocumentViewerBase.cs (5)
423AdornerDecorator adornerDecorator; 939private AdornerDecorator FindAdornerDecorator(Visual root) 944AdornerDecorator adornerDecorator = null; 961if (fe is AdornerDecorator) 963adornerDecorator = (AdornerDecorator)fe;
System\Windows\Controls\Primitives\PopupRoot.cs (1)
379private AdornerDecorator _adornerDecorator;
System\Windows\Documents\AdornerLayer.cs (2)
315if (parent is AdornerDecorator) 316return ((AdornerDecorator)parent).AdornerLayer;
System\windows\Documents\TextSelection.cs (1)
2447if (element is AdornerDecorator || element is System.Windows.Controls.ScrollContentPresenter)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
97case 4: t = () => typeof(AdornerDecorator); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (4)
4248Type type = typeof(System.Windows.Documents.AdornerDecorator); 4250this.GetXamlType(typeof(System.Windows.Documents.AdornerDecorator)), // DeclaringType 4257SetDelegate = delegate (object target, object value) { ((System.Windows.Documents.AdornerDecorator)target).Child = (System.Windows.UIElement)value; }, 4258GetDelegate = delegate (object target) { return ((System.Windows.Documents.AdornerDecorator)target).Child; }
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
1646typeof(System.Windows.Documents.AdornerDecorator),
System\Windows\Markup\KnownTypes.cs (1)
5551case KnownElements.AdornerDecorator: t = typeof(System.Windows.Documents.AdornerDecorator); break;
System.Windows.Controls.Ribbon (2)
Microsoft\Windows\Controls\KeyTipService.cs (2)
1309AdornerDecorator adornerDecorator = parent as AdornerDecorator;
WindowsFormsIntegration (1)
System\Windows\Integration\ElementHost.cs (1)
49private AdornerDecorator _decorator;