23 implementations of PropertyDescriptor
PresentationBuildTasks (1)
src\Microsoft.DotNet.Wpf\src\PresentationFramework\System\Windows\Markup\TypeContext.cs (1)
122public PropertyDescriptor PropertyDescriptor
PresentationFramework (10)
MS\Internal\Data\DefaultValueConverter.cs (1)
793public PropertyDescriptor PropertyDescriptor { get { return null; } }
System\Windows\Controls\ContentPresenter.cs (1)
1135PropertyDescriptor ITypeDescriptorContext.PropertyDescriptor { get { return null; } }
System\Windows\Documents\DPTypeDescriptorContext.cs (1)
171System.ComponentModel.PropertyDescriptor System.ComponentModel.ITypeDescriptorContext.PropertyDescriptor
System\Windows\Markup\Baml2006\DeferredBinaryDeserializerExtension.cs (1)
95PropertyDescriptor ITypeDescriptorContext.PropertyDescriptor
System\Windows\Markup\Baml2006\TypeConverterMarkupExtension.cs (1)
59PropertyDescriptor ITypeDescriptorContext.PropertyDescriptor
System\Windows\Markup\Primitives\ElementMarkupObject.cs (2)
657PropertyDescriptor ITypeDescriptorContext.PropertyDescriptor 1238public PropertyDescriptor PropertyDescriptor
System\Windows\Markup\Primitives\MarkupWriter.cs (1)
1491public PropertyDescriptor PropertyDescriptor
System\Windows\Markup\TypeContext.cs (1)
122public PropertyDescriptor PropertyDescriptor
System\Windows\TemplateContent.cs (1)
1500PropertyDescriptor ITypeDescriptorContext.PropertyDescriptor
ReachFramework (1)
Serialization\Manager\XpsTokenContext.cs (1)
169PropertyDescriptor
System.Drawing.Common.Tests (1)
System\Drawing\Printing\MarginsConverterTests.cs (1)
152public PropertyDescriptor PropertyDescriptor { get { return null; } }
System.Windows.Forms (1)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (1)
614public override PropertyDescriptor? PropertyDescriptor => null;
System.Windows.Forms.Design (3)
System\ComponentModel\Design\DesignerActionPanel.TypeDescriptorContext.cs (1)
25public PropertyDescriptor PropertyDescriptor { get; }
System\Windows\Forms\Design\CollectionEditVerbManager.cs (1)
124PropertyDescriptor ITypeDescriptorContext.PropertyDescriptor
System\Windows\Forms\Design\EditorServiceContext.cs (1)
98PropertyDescriptor? ITypeDescriptorContext.PropertyDescriptor => _targetProperty;
System.Windows.Forms.Design.Tests (1)
System\Windows\Forms\Design\DataMemberFieldConverterTests.cs (1)
55public PropertyDescriptor PropertyDescriptor { get { return null; } }
System.Xaml (2)
System\Xaml\Context\ServiceProviderContext.cs (1)
107PropertyDescriptor ITypeDescriptorContext.PropertyDescriptor
System\Xaml\XamlObjectReader.cs (1)
2807public PropertyDescriptor PropertyDescriptor
System.Xaml.Tests (3)
System\Windows\Markup\NameReferenceConverterTests.cs (1)
201public PropertyDescriptor PropertyDescriptor => throw new NotImplementedException();
System\Windows\Markup\ValueSerializerTests.cs (1)
449public PropertyDescriptor PropertyDescriptor => throw new NotImplementedException();
System\Windows\Markup\XamlSetTypeConverterEventArgsTests.cs (1)
48public PropertyDescriptor PropertyDescriptor => throw new NotImplementedException();
18 references to PropertyDescriptor
PresentationFramework (1)
System\Windows\Markup\Primitives\ElementMarkupObject.cs (1)
1243return _baseContext.PropertyDescriptor;
System.Windows.Forms (5)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertiesTab.cs (2)
52TypeConverter typeConverter = context.PropertyDescriptor is null 54: context.PropertyDescriptor.Converter;
System\Windows\Forms\Controls\TreeView\TreeViewImageIndexConverter.cs (1)
81PropertyDescriptor? imageListProp = ImageListUtils.GetImageListProperty(context.PropertyDescriptor, ref instance);
System\Windows\Forms\ImageIndexConverter.cs (1)
104PropertyDescriptor? imageListProp = ImageListUtils.GetImageListProperty(context.PropertyDescriptor, ref instance);
System\Windows\Forms\ImageKeyConverter.cs (1)
110PropertyDescriptor? imageListProp = ImageListUtils.GetImageListProperty(context.PropertyDescriptor, ref instance);
System.Windows.Forms.Design (2)
System\ComponentModel\Design\Serialization\CodeDomLocalizationProvider.LanguageCultureInfoConverter.cs (1)
34ExtenderProvidedPropertyAttribute? attr = context?.PropertyDescriptor?.GetAttribute<ExtenderProvidedPropertyAttribute>();
System\Windows\Forms\Design\ImageIndexEditor.cs (1)
58PropertyDescriptor? imageListProperty = GetImageListProperty(context.PropertyDescriptor!, ref instance);
System.Windows.Forms.Primitives (1)
System\Windows\Forms\PaddingConverter.cs (1)
73object? original = context?.PropertyDescriptor?.GetValue(context.Instance);
System.Windows.Forms.Tests (9)
System\Windows\Forms\PaddingConverterTests.cs (3)
143.Setup(c => c.PropertyDescriptor) 359.Setup(c => c.PropertyDescriptor) 374.Setup(c => c.PropertyDescriptor)
System\Windows\Forms\PropertyGridInternal\PropertiesTabTests.cs (6)
129.Setup(c => c.PropertyDescriptor) 136mockTypeDescriptorContext.Verify(c => c.PropertyDescriptor, Times.Once()); 145.Setup(c => c.PropertyDescriptor) 152mockTypeDescriptorContext.Verify(c => c.PropertyDescriptor, Times.Exactly(2)); 161.Setup(c => c.PropertyDescriptor) 167mockTypeDescriptorContext.Verify(c => c.PropertyDescriptor, Times.Exactly(2));