25 references to Notify
System.Windows.Forms (22)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\CategoryGridEntry.cs (1)
158
internal override bool SendNotification(GridEntry entry,
Notify
notification)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (9)
1411
SendNotificationToParent(
Notify
.Reset);
1418
public virtual bool CanResetPropertyValue() => SendNotificationToParent(
Notify
.CanReset);
1423
public virtual bool DoubleClickPropertyValue() => SendNotificationToParent(
Notify
.DoubleClick);
2029
internal bool OnValueReturnKey() => SendNotificationToParent(
Notify
.Return);
2075
_cacheItems.LastShouldSerialize = SendNotificationToParent(
Notify
.ShouldPersist);
2083
LastShouldSerialize = SendNotificationToParent(
Notify
.ShouldPersist),
2133
protected virtual bool SendNotification(object? owner,
Notify
notification) => false;
2141
internal virtual bool SendNotification(GridEntry entry,
Notify
notification)
2150
internal bool SendNotificationToParent(
Notify
type)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\ImmutablePropertyDescriptorGridEntry.cs (1)
96
protected override bool SendNotification(object? owner,
Notify
notification)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\MultiPropertyDescriptorGridEntry.cs (5)
181
internal override bool SendNotification(GridEntry entry,
Notify
notification)
256
protected override bool SendNotification(object? owner,
Notify
notification)
265
case
Notify
.Reset:
306
case
Notify
.DoubleClick:
307
case
Notify
.Return:
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyDescriptorGridEntry.cs (6)
398
protected override bool SendNotification(object? owner,
Notify
type)
407
case
Notify
.Reset:
420
case
Notify
.CanReset:
438
case
Notify
.ShouldPersist:
455
case
Notify
.DoubleClick:
456
case
Notify
.Return:
System.Windows.Forms.Tests (3)
System\Windows\Forms\MultiPropertyDescriptorGridEntryTests.cs (3)
188
bool result = multiPropertyDescriptorGridEntry.SendNotification(entryParam,
Notify
.Reset);
220
bool resultReset = multiPropertyDescriptorGridEntry.SendNotification(gridEntry,
Notify
.Reset);
221
bool resultDoubleClick = multiPropertyDescriptorGridEntry.SendNotification(gridEntry,
Notify
.DoubleClick);