Base:
method
SetBoundsCore
System.Windows.Forms.Control.SetBoundsCore(System.Int32, System.Int32, System.Int32, System.Int32, System.Windows.Forms.BoundsSpecified)
2 overrides of SetBoundsCore
System.Windows.Forms (1)
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (1)
1520
protected override void
SetBoundsCore
(int x, int y, int width, int height, BoundsSpecified specified)
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\ToolStripTemplateNode.cs (1)
1697
protected override void
SetBoundsCore
(int x, int y, int width, int height, BoundsSpecified specified)
6 references to SetBoundsCore
System.Windows.Forms (2)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
4659
SetBoundsCore
(bounds.X, bounds.Y, bounds.Width, bounds.Height, specified);
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (1)
1525
base.
SetBoundsCore
(bounds.X, bounds.Y, bounds.Width, bounds.Height, specified);
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\ToolStripTemplateNode.cs (3)
1701
base.
SetBoundsCore
(x, y, s_toolStripTemplateWidth, s_toolStripTempateHeight, specified);
1705
base.
SetBoundsCore
(x, y, s_toolStripTemplateWidth, s_templateHeight, specified);
1709
base.
SetBoundsCore
(x, y, s_templateWidth, s_templateHeight, specified);
System.Windows.Forms.Tests (1)
System\Windows\Forms\ToolStripTests.cs (1)
7655
public new void SetBoundsCore(int x, int y, int width, int height, BoundsSpecified specified) => base.
SetBoundsCore
(x, y, width, height, specified);