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