1 write to _componentChangeService
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\ToolStripDesigner.cs (1)
1398
_componentChangeService
= _host.GetService<IComponentChangeService>();
16 references to _componentChangeService
System.Windows.Forms.Design (16)
System\Windows\Forms\Design\ToolStripDesigner.cs (16)
1116
if (
_componentChangeService
is not null)
1118
_componentChangeService
.ComponentAdding -= ComponentChangeSvc_ComponentAdding;
1119
_componentChangeService
.ComponentAdded -= ComponentChangeSvc_ComponentAdded;
1120
_componentChangeService
.ComponentRemoving -= ComponentChangeSvc_ComponentRemoving;
1121
_componentChangeService
.ComponentRemoved -= ComponentChangeSvc_ComponentRemoved;
1122
_componentChangeService
.ComponentChanged -= ComponentChangeSvc_ComponentChanged;
1421
if (
_componentChangeService
is not null)
1423
_componentChangeService
.ComponentAdding += ComponentChangeSvc_ComponentAdding;
1424
_componentChangeService
.ComponentAdded += ComponentChangeSvc_ComponentAdded;
1425
_componentChangeService
.ComponentRemoving += ComponentChangeSvc_ComponentRemoving;
1426
_componentChangeService
.ComponentRemoved += ComponentChangeSvc_ComponentRemoved;
1427
_componentChangeService
.ComponentChanged += ComponentChangeSvc_ComponentChanged;
1536
_componentChangeService
?.OnComponentChanging(parentPanel, controlsProp);
1540
_componentChangeService
?.OnComponentChanged(parentPanel, controlsProp, parentPanel.Controls, parentPanel.Controls);
1544
_componentChangeService
?.OnComponentChanging(ToolStrip, locationProp);
1545
_componentChangeService
?.OnComponentChanged(ToolStrip, locationProp);