25 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)
1411SendNotificationToParent(Notify.Reset); 1418public virtual bool CanResetPropertyValue() => SendNotificationToParent(Notify.CanReset); 1423public virtual bool DoubleClickPropertyValue() => SendNotificationToParent(Notify.DoubleClick); 2029internal bool OnValueReturnKey() => SendNotificationToParent(Notify.Return); 2075_cacheItems.LastShouldSerialize = SendNotificationToParent(Notify.ShouldPersist); 2083LastShouldSerialize = SendNotificationToParent(Notify.ShouldPersist), 2133protected virtual bool SendNotification(object? owner, Notify notification) => false; 2141internal virtual bool SendNotification(GridEntry entry, Notify notification) 2150internal 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:
System.Windows.Forms.Tests (3)
System\Windows\Forms\MultiPropertyDescriptorGridEntryTests.cs (3)
188bool result = multiPropertyDescriptorGridEntry.SendNotification(entryParam, Notify.Reset); 220bool resultReset = multiPropertyDescriptorGridEntry.SendNotification(gridEntry, Notify.Reset); 221bool resultDoubleClick = multiPropertyDescriptorGridEntry.SendNotification(gridEntry, Notify.DoubleClick);