1 override of ComponentChangeService
System.Windows.Forms (1)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\SingleSelectRootGridEntry.cs (1)
103protected override IComponentChangeService? ComponentChangeService
12 references to ComponentChangeService
System.Windows.Forms (12)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (3)
169protected virtual IComponentChangeService? ComponentChangeService => _parent?.ComponentChangeService; 1958ComponentChangeService?.OnComponentChanging(owner, PropertyDescriptor); 1975ComponentChangeService?.OnComponentChanged(owner, PropertyDescriptor);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\MultiPropertyDescriptorGridEntry.cs (5)
222IComponentChangeService? changeService = ComponentChangeService; 362if (ComponentChangeService is null) 372ComponentChangeService.OnComponentChanging(_objects[i], _mergedDescriptor[i]); 385if (ComponentChangeService is not null) 390ComponentChangeService.OnComponentChanged(_objects[i], _mergedDescriptor[i]);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyDescriptorGridEntry.cs (4)
387ComponentChangeService?.OnComponentChanging(owner, entry.PropertyDescriptor); 388ComponentChangeService?.OnComponentChanged(owner, entry.PropertyDescriptor); 587ComponentChangeService?.OnComponentChanging(owner, PropertyDescriptor); 674ComponentChangeService?.OnComponentChanged(owner!, PropertyDescriptor, oldValue: null, value);