2 types derived from PropertyDescriptorGridEntry
System.Windows.Forms (2)
winforms\Managed\System\WinForms\PropertyGridInternal\ImmutablePropertyDescriptorGridEntry.cs (1)
31internal class ImmutablePropertyDescriptorGridEntry : PropertyDescriptorGridEntry {
winforms\Managed\System\WinForms\PropertyGridInternal\MultiPropertyDescriptorGridEntry.cs (1)
16internal class MultiPropertyDescriptorGridEntry : PropertyDescriptorGridEntry {
1 instantiation of PropertyDescriptorGridEntry
System.Windows.Forms (1)
winforms\Managed\System\WinForms\PropertyGridInternal\GridEntry.cs (1)
1647newEntry = new PropertyDescriptorGridEntry(this.ownerGrid, peParent, pd, hide);
22 references to PropertyDescriptorGridEntry
System.Windows.Forms (22)
winforms\Managed\System\WinForms\PropertyGrid.cs (2)
2757PropertyDescriptorGridEntry selectedEntry = gridView.SelectedGridEntry as PropertyDescriptorGridEntry;
winforms\Managed\System\WinForms\PropertyGridInternal\MultiPropertyDescriptorGridEntry.cs (6)
186ge is PropertyDescriptorGridEntry && 187((PropertyDescriptorGridEntry)ge).propertyInfo.Attributes.Contains(NotifyParentPropertyAttribute.Yes)) { 193while (!(ge is PropertyDescriptorGridEntry) || OwnersEqual(owner, ge.GetValueOwner())) { 210PropertyDescriptor pd = ((PropertyDescriptorGridEntry)ge).propertyInfo;; 223changeService.OnComponentChanging(owner, ((PropertyDescriptorGridEntry)ge).propertyInfo); 224changeService.OnComponentChanged(owner, ((PropertyDescriptorGridEntry)ge).propertyInfo, null, null);
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyDescriptorGridEntry.cs (10)
477ge is PropertyDescriptorGridEntry && 478((PropertyDescriptorGridEntry)ge).propertyInfo.Attributes.Contains(NotifyParentPropertyAttribute.Yes)) { 489while (!(ge is PropertyDescriptorGridEntry) 504changeService.OnComponentChanging(owner, ((PropertyDescriptorGridEntry)ge).propertyInfo); 505changeService.OnComponentChanged(owner, ((PropertyDescriptorGridEntry)ge).propertyInfo, null, null); 983Application.Idle += new EventHandler(PropertyDescriptorGridEntry.ShowCodeIdle); 1007Application.Idle -= new EventHandler(PropertyDescriptorGridEntry.ShowCodeIdle); 1036private PropertyDescriptorGridEntry _owningPropertyDescriptorGridEntry; 1038public PropertyDescriptorGridEntryAccessibleObject(PropertyDescriptorGridEntry owner) : base(owner) { 1178return !((PropertyDescriptorGridEntry)owner).IsPropertyReadOnly;
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (4)
5596private InstanceCreationEditor GetInstanceCreationEditor(PropertyDescriptorGridEntry entry) { 5956InstanceCreationEditor editor = (ctl == null ? null : GetInstanceCreationEditor(gridView.SelectedGridEntry as PropertyDescriptorGridEntry)); 7048PropertyDescriptorGridEntry propertyDescriptorGridEntry = this.propertyGridView.SelectedGridEntry as PropertyDescriptorGridEntry;