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)
1116if (_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; 1421if (_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);