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)
1523
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)
1736
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)
4657
SetBoundsCore
(bounds.X, bounds.Y, bounds.Width, bounds.Height, specified);
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (1)
1528
base.
SetBoundsCore
(bounds.X, bounds.Y, bounds.Width, bounds.Height, specified);
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\ToolStripTemplateNode.cs (3)
1740
base.
SetBoundsCore
(x, y, s_toolStripTemplateWidth, s_toolStripTempateHeight, specified);
1744
base.
SetBoundsCore
(x, y, s_toolStripTemplateWidth, s_templateHeight, specified);
1748
base.
SetBoundsCore
(x, y, s_templateWidth, s_templateHeight, specified);
System.Windows.Forms.Tests (1)
System\Windows\Forms\ToolStripTests.cs (1)
7684
public new void SetBoundsCore(int x, int y, int width, int height, BoundsSpecified specified) => base.
SetBoundsCore
(x, y, width, height, specified);