23 implementations of PropertyDescriptor
PresentationBuildTasks (1)
src\Microsoft.DotNet.Wpf\src\PresentationFramework\System\Windows\Markup\TypeContext.cs (1)
123public PropertyDescriptor PropertyDescriptor
PresentationFramework (10)
MS\Internal\Data\DefaultValueConverter.cs (1)
797public PropertyDescriptor PropertyDescriptor { get { return null; } }
System\Windows\Controls\ContentPresenter.cs (1)
1144PropertyDescriptor ITypeDescriptorContext.PropertyDescriptor { get { return null; } }
System\Windows\Documents\DPTypeDescriptorContext.cs (1)
173System.ComponentModel.PropertyDescriptor System.ComponentModel.ITypeDescriptorContext.PropertyDescriptor
System\Windows\Markup\Baml2006\DeferredBinaryDeserializerExtension.cs (1)
98PropertyDescriptor ITypeDescriptorContext.PropertyDescriptor
System\Windows\Markup\Baml2006\TypeConverterMarkupExtension.cs (1)
61PropertyDescriptor ITypeDescriptorContext.PropertyDescriptor
System\Windows\Markup\Primitives\ElementMarkupObject.cs (2)
668PropertyDescriptor ITypeDescriptorContext.PropertyDescriptor 1249public PropertyDescriptor PropertyDescriptor
System\Windows\Markup\Primitives\MarkupWriter.cs (1)
1498public PropertyDescriptor PropertyDescriptor
System\Windows\Markup\TypeContext.cs (1)
123public PropertyDescriptor PropertyDescriptor
System\Windows\TemplateContent.cs (1)
1503PropertyDescriptor ITypeDescriptorContext.PropertyDescriptor
ReachFramework (1)
Serialization\Manager\XpsTokenContext.cs (1)
180PropertyDescriptor
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)
109PropertyDescriptor ITypeDescriptorContext.PropertyDescriptor
System\Xaml\XamlObjectReader.cs (1)
2812public 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)
1254return _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));