66 references to
PresentationFramework (1)
MS\Internal\Data\PropertyPathWorker.cs (1)
1467if (properties[name] != null)
PresentationFramework-SystemData (2)
SystemDataExtension.cs (2)
76s_DataTablePropertyDescriptorType = pdc["Table1"].GetType(); 79s_DataRelationPropertyDescriptorType = pdc["IDRelation"].GetType();
PresentationFramework-SystemXmlLinq (4)
SystemXmlLinqExtension.cs (4)
23s_XElementElementsPropertyDescriptorType = pdc["Elements"].GetType(); 24s_XElementDescendantsPropertyDescriptorType = pdc["Descendants"].GetType(); 25s_XElementAttributePropertyDescriptorType = pdc["Attribute"].GetType(); 26s_XElementElementPropertyDescriptorType = pdc["Element"].GetType();
System.ComponentModel.TypeConverter (1)
System\ComponentModel\Design\DesignerOptionService.cs (1)
65return options.Properties[valueName];
System.Windows.Forms (8)
System\Windows\Forms\Controls\DataGridView\DataGridView.DataConnection.cs (1)
1530if (DataMember.Length != 0 && props[DataMember] is not null)
System\Windows\Forms\Controls\ListView\ListViewItemStateImageIndexConverter.cs (2)
51PropertyDescriptor? listViewProp = listViewItemProps["ListView"]; 62PropertyDescriptor? listViewImageListProperty = listViewProps["StateImageList"];
System\Windows\Forms\Controls\TreeView\TreeViewImageIndexConverter.cs (1)
100PropertyDescriptor? parentProp = props[ParentImageListProperty];
System\Windows\Forms\DataBinding\BindingSource.cs (2)
719PropertyDescriptor? dmProp = dsProps[_dataMember]; 905PropertyDescriptor? dmProp = dsProps[_dataMember];
System\Windows\Forms\ImageIndexConverter.cs (1)
123PropertyDescriptor? parentProp = props[ParentImageListProperty];
System\Windows\Forms\ImageKeyConverter.cs (1)
129PropertyDescriptor? parentProp = props[ParentImageListProperty];
System.Windows.Forms.Design (49)
System\ComponentModel\Design\DesignerActionUIService.cs (1)
77PropertyDescriptor? p = opts.Options.Properties["ObjectBoundSmartTagAutoShow"];
System\ComponentModel\Design\Serialization\CodeDomComponentSerializationService.CodeDomSerializationStore.ComponentListCodeDomSerializer.cs (3)
156PropertyDescriptor? prop = props[propName]; 189PropertyDescriptor? prop = props[stateEntry.Key]; 423PropertyDescriptor? prop = eventProps[eventName];
System\ComponentModel\Design\Serialization\CodeDomSerializerBase.cs (3)
376PropertyDescriptor? property = ourProperties[propertyName]; 1548PropertyDescriptor? p = properties[propertyReferenceEx.PropertyName]; 2176PropertyDescriptor? filterProp = manager.Properties["FilteredProperties"];
System\ComponentModel\Design\Serialization\CollectionCodeDomSerializer.cs (1)
658PropertyDescriptor? clearProperty = manager.Properties["ClearCollections"];
System\ComponentModel\Design\Serialization\ComponentCache.cs (1)
30PropertyDescriptor? componentCacheProp = options.Options.Properties["UseOptimizedCodeGeneration"];
System\ComponentModel\Design\Serialization\ComponentCodeDomSerializer.cs (3)
180PropertyDescriptor? generateProp = props["GenerateMember"]; 220PropertyDescriptor? modifiersProp = props["Modifiers"]; 222modifiersProp ??= props["DefaultModifiers"];
System\ComponentModel\Design\Serialization\TypeCodeDomSerializer.cs (1)
143PropertyDescriptor? supportGenerate = manager.Properties["SupportsStatementGeneration"];
System\Windows\Forms\Design\Behavior\SelectionManager.cs (1)
82PropertyDescriptor? p = options?.Options.Properties["UseSmartTags"];
System\Windows\Forms\Design\CommandSet.cs (14)
600PropertyDescriptor? currentSnapProp = props["SnapToGrid"]; 606PropertyDescriptor? gridSizeProp = props["GridSize"]; 1002PropertyDescriptor? locProp = props["Location"]; 1003PropertyDescriptor? sizeProp = props["Size"]; 1004PropertyDescriptor? lockProp = props["Locked"]; 1273PropertyDescriptor? locProp = props["Location"]; 1274PropertyDescriptor? sizeProp = props["Size"]; 1283PropertyDescriptor? lockProp = props["Locked"]; 1333PropertyDescriptor locProp = props["Location"]!; 2083PropertyDescriptor? nameProp = props["Name"]; 2088PropertyDescriptor? textProp = props["Text"]; 2726PropertyDescriptor? lockedDesc = props["Locked"]; 2734curSizeDesc = props["Size"]; 2735curLocDesc = props["Location"];
System\Windows\Forms\Design\ControlCommandSet.cs (3)
382currentSnapProp = props["SnapToGrid"]; 405currentSnapProp = props["SnapToGrid"]; 414gridSizeProp = props["GridSize"];
System\Windows\Forms\Design\ControlDesigner.cs (8)
206PropertyDescriptor? autoSizeProp = props["AutoSize"]; 207PropertyDescriptor? autoSizeModeProp = props["AutoSizeMode"]; 209if ((prop = props["Location"]) is not null && !prop.IsReadOnly) 214if ((prop = props["Size"]) is not null && !prop.IsReadOnly) 229if (props["Dock"] is PropertyDescriptor propDock) 268if (props["Locked"] is PropertyDescriptor pd) 931PropertyDescriptor? visibleProp = props["Visible"]; 937PropertyDescriptor? enabledProp = props["Enabled"];
System\Windows\Forms\Design\DataGridViewAddColumnDialog.cs (1)
141PropertyDescriptor? pd = props["UserAddedColumn"];
System\Windows\Forms\Design\DesignerUtils.cs (2)
354PropertyDescriptor? snaplinesProp = options.Options.Properties["UseSnapLines"]; 373PropertyDescriptor? prop = designerOptionService.Options.Properties[name];
System\Windows\Forms\Design\FormDocumentDesigner.cs (2)
237changeService?.OnComponentChanging(Component, props["ClientSize"]); 240changeService?.OnComponentChanged(Component, props["ClientSize"]);
System\Windows\Forms\Design\ImageIndexEditor.cs (1)
78instance = properties[ParentImageListProperty]?.GetValue(instance);
System\Windows\Forms\Design\ParentControlDesigner.cs (2)
566PropertyDescriptor prop = props["Size"]; 584prop = props["Location"];
System\Windows\Forms\Design\ToolStripCustomTypeDescriptor.cs (2)
52_propItems = _collection["Items"]; 86_propItems = _collection["Items"];
System.Windows.Forms.Primitives (1)
System\ComponentModel\PropertyDescriptorCollectionExtensions.cs (1)
14PropertyDescriptor? propertyDescriptor = propertyDescriptors[name];