2 overrides of SendNotification
System.Windows.Forms (2)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\CategoryGridEntry.cs (1)
158internal override bool SendNotification(GridEntry entry, Notify notification)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\MultiPropertyDescriptorGridEntry.cs (1)
181internal override bool SendNotification(GridEntry entry, Notify notification)
3 references to SendNotification
System.Windows.Forms (3)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\CategoryGridEntry.cs (1)
159=> ParentGridEntry?.SendNotification(entry, notification) ?? false;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (1)
2160=> _parent is null || _parent.SendNotification(this, type);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\MultiPropertyDescriptorGridEntry.cs (1)
187return base.SendNotification(entry, notification);