1 instantiation of InheritedPropertyDescriptor
System.Windows.Forms.Design (1)
System\ComponentModel\Design\ComponentDesigner.cs (1)
434props.Add(prop.Name, new(prop, Component));
8 references to InheritedPropertyDescriptor
System.Windows.Forms.Design (8)
System\ComponentModel\Design\ComponentDesigner.cs (4)
16private Dictionary<string, InheritedPropertyDescriptor>? _inheritedProps; 404Dictionary<string, InheritedPropertyDescriptor> props = []; 675foreach (KeyValuePair<string, InheritedPropertyDescriptor> de in _inheritedProps) 681InheritedPropertyDescriptor inheritedPropDesc = de.Value;
System\ComponentModel\Design\InheritedPropertyDescriptor.cs (3)
21/// Initializes a new instance of the <see cref="InheritedPropertyDescriptor"/> class. 25Debug.Assert(propertyDescriptor is not InheritedPropertyDescriptor, $"Recursive inheritance propertyDescriptor {propertyDescriptor}"); 126Debug.Assert(value is not InheritedPropertyDescriptor, $"Recursive inheritance propertyDescriptor {_propertyDescriptor}");
System\ComponentModel\Design\Serialization\CollectionCodeDomSerializer.cs (1)
182if (property is InheritedPropertyDescriptor inheritedDesc && !isArray)