1 write to _componentChangeService
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\ToolStripDesigner.cs (1)
1422
_componentChangeService
= _host.GetService<IComponentChangeService>();
16 references to _componentChangeService
System.Windows.Forms.Design (16)
System\Windows\Forms\Design\ToolStripDesigner.cs (16)
1131
if (
_componentChangeService
is not null)
1133
_componentChangeService
.ComponentAdding -= ComponentChangeSvc_ComponentAdding;
1134
_componentChangeService
.ComponentAdded -= ComponentChangeSvc_ComponentAdded;
1135
_componentChangeService
.ComponentRemoving -= ComponentChangeSvc_ComponentRemoving;
1136
_componentChangeService
.ComponentRemoved -= ComponentChangeSvc_ComponentRemoved;
1137
_componentChangeService
.ComponentChanged -= ComponentChangeSvc_ComponentChanged;
1445
if (
_componentChangeService
is not null)
1447
_componentChangeService
.ComponentAdding += ComponentChangeSvc_ComponentAdding;
1448
_componentChangeService
.ComponentAdded += ComponentChangeSvc_ComponentAdded;
1449
_componentChangeService
.ComponentRemoving += ComponentChangeSvc_ComponentRemoving;
1450
_componentChangeService
.ComponentRemoved += ComponentChangeSvc_ComponentRemoved;
1451
_componentChangeService
.ComponentChanged += ComponentChangeSvc_ComponentChanged;
1560
_componentChangeService
?.OnComponentChanging(parentPanel, controlsProp);
1564
_componentChangeService
?.OnComponentChanged(parentPanel, controlsProp, parentPanel.Controls, parentPanel.Controls);
1568
_componentChangeService
?.OnComponentChanging(ToolStrip, locationProp);
1569
_componentChangeService
?.OnComponentChanged(ToolStrip, locationProp);