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