5 overrides of CreateToolCore
System.Windows.Forms.Design (5)
System\Windows\Forms\Design\SplitContainerDesigner.cs (1)
160protected override IComponent[]? CreateToolCore(ToolboxItem tool, int x, int y, int width, int height, bool hasLocation, bool hasSize)
System\Windows\Forms\Design\TabControlDesigner.cs (1)
122protected override IComponent[] CreateToolCore(ToolboxItem tool, int x, int y, int width, int height, bool hasLocation, bool hasSize)
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (1)
1200protected override IComponent[] CreateToolCore(ToolboxItem tool, int x, int y, int width, int height, bool hasLocation, bool hasSize)
System\Windows\Forms\Design\ToolStripContainerDesigner.cs (1)
163protected override IComponent[]? CreateToolCore(ToolboxItem tool, int x, int y, int width, int height, bool hasLocation, bool hasSize)
System\Windows\Forms\Design\ToolStripPanelDesigner.cs (1)
165protected override IComponent[]? CreateToolCore(ToolboxItem tool, int x, int y, int width, int height, bool hasLocation, bool hasSize)
5 references to CreateToolCore
System.Windows.Forms.Design (5)
System\Windows\Forms\Design\ParentControlDesigner.cs (3)
792CreateToolCore(tool, 0, 0, 0, 0, false, false); 802CreateToolCore(tool, location.X, location.Y, 0, 0, true, false); 812CreateToolCore(tool, bounds.X, bounds.Y, bounds.Width, bounds.Height, true, true);
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (1)
1205return base.CreateToolCore(tool, x, y, width, height, hasLocation, hasSize);
System\Windows\Forms\Design\ToolStripPanelDesigner.cs (1)
184base.CreateToolCore(tool, x, y, width, height, hasLocation, hasSize);