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