22 references to Notify
System.Windows.Forms (22)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\CategoryGridEntry.cs (1)
158internal override bool SendNotification(GridEntry entry, Notify notification)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (9)
1420SendNotificationToParent(Notify.Reset); 1427public virtual bool CanResetPropertyValue() => SendNotificationToParent(Notify.CanReset); 1432public virtual bool DoubleClickPropertyValue() => SendNotificationToParent(Notify.DoubleClick); 2038internal bool OnValueReturnKey() => SendNotificationToParent(Notify.Return); 2084_cacheItems.LastShouldSerialize = SendNotificationToParent(Notify.ShouldPersist); 2092LastShouldSerialize = SendNotificationToParent(Notify.ShouldPersist), 2142protected virtual bool SendNotification(object? owner, Notify notification) => false; 2150internal virtual bool SendNotification(GridEntry entry, Notify notification) 2159internal bool SendNotificationToParent(Notify type)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\ImmutablePropertyDescriptorGridEntry.cs (1)
96protected override bool SendNotification(object? owner, Notify notification)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\MultiPropertyDescriptorGridEntry.cs (5)
181internal override bool SendNotification(GridEntry entry, Notify notification) 256protected override bool SendNotification(object? owner, Notify notification) 265case Notify.Reset: 306case Notify.DoubleClick: 307case Notify.Return:
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyDescriptorGridEntry.cs (6)
398protected override bool SendNotification(object? owner, Notify type) 407case Notify.Reset: 420case Notify.CanReset: 438case Notify.ShouldPersist: 455case Notify.DoubleClick: 456case Notify.Return: