1 implementation of OnComponentChanged
System.Windows.Forms.Design (1)
System\ComponentModel\Design\DesignerHost.cs (1)
838void IComponentChangeService.OnComponentChanged(object component, MemberDescriptor? member, object? oldValue, object? newValue)
43 references to OnComponentChanged
System.ComponentModel.TypeConverter (6)
System\ComponentModel\ReflectEventDescriptor.cs (2)
213changeService?.OnComponentChanged(component, this, null, value); 489changeService?.OnComponentChanged(component, this, null, value);
System\ComponentModel\ReflectPropertyDescriptor.cs (4)
616changeService.OnComponentChanged(component, notifyDesc, oldValue, newValue); 661changeService?.OnComponentChanged(component!, notifyDesc, oldValue, value); 1064changeService.OnComponentChanged(component, this, oldValue, newValue); 1149changeService?.OnComponentChanged(component, this, oldValue, value);
System.Windows.Forms (2)
System\Windows\Forms\ActiveX\AxHost.OleInterfaces.cs (1)
523changeService.OnComponentChanged(_host, prop, oldValue: null, prop?.GetValue(_host));
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyDescriptorGridEntry.cs (1)
674ComponentChangeService?.OnComponentChanged(owner!, PropertyDescriptor, oldValue: null, value);
System.Windows.Forms.Design (34)
System\ComponentModel\Design\ComponentDesigner.cs (1)
726=> GetService<IComponentChangeService>()?.OnComponentChanged(Component, member, oldValue, newValue);
System\ComponentModel\Design\EventBindingService.EventPropertyDescriptor.cs (1)
254changeService.OnComponentChanged(component!, this, oldName, name);
System\ComponentModel\Design\ToolStripContainerActionList.cs (2)
187componentChangeService.OnComponentChanged(oldParent, controlsProp, oldValue: null, newValue: null); 191componentChangeService?.OnComponentChanged(newParent, controlsProp, oldValue: null, newValue: null);
System\Windows\Forms\Design\Behavior\DropSourceBehavior.cs (2)
502componentChangeSvcTarget.OnComponentChanged(dragTarget, targetProp, dragTarget.Controls, dragTarget.Controls); 505componentChangeSvcSource.OnComponentChanged(dragSource, sourceProp, dragSource.Controls, dragSource.Controls);
System\Windows\Forms\Design\Behavior\TableLayoutPanelBehavior.cs (1)
59cs.OnComponentChanged(_table, _changedProp, null, null);
System\Windows\Forms\Design\Behavior\ToolStripPanelSelectionBehavior.cs (2)
179changeService.OnComponentChanged(oldParent, controlsProp, oldValue: null, newValue: null); 182changeService.OnComponentChanged(newParent, controlsProp, oldValue: null, newValue: null);
System\Windows\Forms\Design\BindingNavigatorDesigner.cs (2)
80componentChangeService.OnComponentChanged(component: navigator, member: memberDescriptor, oldValue: null, newValue: null); 89componentChangeService.OnComponentChanged(component: navigator, member: propertyDescriptor, oldValue: null, newValue: null);
System\Windows\Forms\Design\BindingSourceDesigner.cs (1)
74componentChangeService?.OnComponentChanged(bindingSource, propertyDescriptor, previousDataMember, string.Empty);
System\Windows\Forms\Design\DataGridViewAddColumnDialog.cs (1)
553changeService.OnComponentChanged(_liveDataGridView, prop, null, null);
System\Windows\Forms\Design\DataGridViewColumnCollectionDialog.cs (2)
208changeService?.OnComponentChanged(_liveDataGridView, prop, null, null); 271changeService?.OnComponentChanged(_liveDataGridView, prop, null, null);
System\Windows\Forms\Design\DataGridViewDesigner.cs (9)
53componentChangeService?.OnComponentChanged(dataGridView.Columns[i], prop, null, null); 309componentChangeService?.OnComponentChanged(dataGridView, propertyDescriptor, previousDataMember, string.Empty); 504changeService?.OnComponentChanged(dataGridView, columnsProp, oldValue: null, newValue: null); 598changeService?.OnComponentChanged(dataGridView, columnsProp, oldValue: null, newValue: null); 685changeService?.OnComponentChanged(dataGridView, columnsProp, null, null); 877changeService?.OnComponentChanged(dataGridView, prop, null, null); 920changeService?.OnComponentChanged(dataGridView, prop, null, null); 963changeService?.OnComponentChanged(dataGridView, prop, null, null); 1006changeService?.OnComponentChanged(dataGridView, prop, null, null);
System\Windows\Forms\Design\DataGridViewDesigner.DataGridViewChooseDataSourceActionList.cs (1)
56changeService?.OnComponentChanged(_owner.Component, dataSourceProp, null, null);
System\Windows\Forms\Design\ParentControlDesigner.cs (3)
588_changeService?.OnComponentChanged(Control, controlsProp, Control.Controls, Control.Controls); 2407_changeService?.OnComponentChanged(cParent, controlsProp, cParent.Controls, cParent.Controls); 2419_changeService?.OnComponentChanged(parent, controlsProp, parent.Controls, parent.Controls);
System\Windows\Forms\Design\StyleEditorForm.cs (3)
1077_componentChangeService.OnComponentChanged(_tableLayoutPanel, childProperty, null, null); 1085_componentChangeService.OnComponentChanged(_tableLayoutPanel, _rowStyleProp, null, null); 1090_componentChangeService.OnComponentChanged(_tableLayoutPanel, _colStyleProp, null, null);
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (2)
1457_compSvc.OnComponentChanged(Component, controlsProp, null, null); 2126_compSvc.OnComponentChanged(Table, prop, null, null);
System\Windows\Forms\Design\ToolStripDesigner.cs (1)
1540_componentChangeService?.OnComponentChanged(parentPanel, controlsProp, parentPanel.Controls, parentPanel.Controls);
System.Windows.Forms.Primitives (1)
System\ComponentModel\Design\ComponentChangeServiceExtensions.cs (1)
15changeService.OnComponentChanged(component, member, oldValue, newValue);