15 overrides of SetBoundsCore
System.Windows.Forms (15)
winforms\Managed\System\WinForms\AxHost.cs (1)
1556protected override void SetBoundsCore(int x, int y, int width, int height, BoundsSpecified specified) {
winforms\Managed\System\WinForms\ComboBox.cs (1)
3272protected override void SetBoundsCore(int x, int y, int width, int height, BoundsSpecified specified) {
winforms\Managed\System\WinForms\DataGridViewMethods.cs (1)
27470protected override void SetBoundsCore(int x, int y, int width, int height, BoundsSpecified specified)
winforms\Managed\System\WinForms\Form.cs (1)
5860protected override void SetBoundsCore(int x, int y, int width, int height, BoundsSpecified specified) {
winforms\Managed\System\WinForms\Label.cs (1)
1670protected override void SetBoundsCore(int x, int y, int width, int height, BoundsSpecified specified) {
winforms\Managed\System\WinForms\ListBox.cs (1)
2068protected override void SetBoundsCore(int x, int y, int width, int height, BoundsSpecified specified) {
winforms\Managed\System\WinForms\MDIClient.cs (1)
237protected override void SetBoundsCore(int x, int y, int width, int height, BoundsSpecified specified) {
winforms\Managed\System\WinForms\MonthCalendar.cs (1)
1951protected override void SetBoundsCore(int x, int y, int width, int height, BoundsSpecified specified) {
winforms\Managed\System\WinForms\SplitContainer.cs (1)
2137protected override void SetBoundsCore(int x, int y, int width, int height, BoundsSpecified specified) {
winforms\Managed\System\WinForms\Splitter.cs (1)
950protected override void SetBoundsCore(int x, int y, int width, int height, BoundsSpecified specified) {
winforms\Managed\System\WinForms\TabPage.cs (1)
739protected override void SetBoundsCore (int x, int y, int width, int height, BoundsSpecified specified) {
winforms\Managed\System\WinForms\TextBoxBase.cs (1)
1985protected override void SetBoundsCore(int x, int y, int width, int height, BoundsSpecified specified) {
winforms\Managed\System\WinForms\ToolBar.cs (1)
1449protected override void SetBoundsCore(int x, int y, int width, int height, BoundsSpecified specified) {
winforms\Managed\System\WinForms\ToolStrip.cs (1)
2787protected override void SetBoundsCore(int x, int y, int width, int height, BoundsSpecified specified) {
winforms\Managed\System\WinForms\TrackBar.cs (1)
1054protected override void SetBoundsCore(int x, int y, int width, int height, BoundsSpecified specified) {
25 references to SetBoundsCore
System.Windows.Forms (25)
winforms\Managed\System\WinForms\AxHost.cs (2)
1573base.SetBoundsCore(x, y, width, height, specified); 1602base.SetBoundsCore(x, y, width, height, specified);
winforms\Managed\System\WinForms\ComboBox.cs (1)
3280base.SetBoundsCore(x, y, width, height, specified);
winforms\Managed\System\WinForms\Control.cs (4)
11562SetBoundsCore(rawScaledBounds.X, rawScaledBounds.Y, scaledSize.Width, scaledSize.Height, BoundsSpecified.All); 11806SetBoundsCore(x, y, width, height, BoundsSpecified.All); 11829SetBoundsCore(x, y, width, height, specified); 14536SetBoundsCore(bounds.X, bounds.Y, bounds.Width, bounds.Height, specified);
winforms\Managed\System\WinForms\DataGridViewMethods.cs (1)
27478base.SetBoundsCore(x, y, width, height, specified);
winforms\Managed\System\WinForms\Form.cs (2)
5939base.SetBoundsCore(adjustedBounds.X, adjustedBounds.Y, adjustedBounds.Width, adjustedBounds.Height, BoundsSpecified.All); 5944base.SetBoundsCore(x, y, width, height, specified);
winforms\Managed\System\WinForms\Label.cs (1)
1682base.SetBoundsCore(x, y, width, height, specified);
winforms\Managed\System\WinForms\ListBox.cs (1)
2076base.SetBoundsCore(x, y, width, height, specified);
winforms\Managed\System\WinForms\MDIClient.cs (2)
241base.SetBoundsCore(x, y, width, height, specified); 279base.SetBoundsCore(x, y, width, height, specified);
winforms\Managed\System\WinForms\MonthCalendar.cs (1)
1969base.SetBoundsCore(x, y, width, height, specified);
winforms\Managed\System\WinForms\SplitContainer.cs (1)
2155base.SetBoundsCore(x, y, width, height, specified);
winforms\Managed\System\WinForms\Splitter.cs (1)
963base.SetBoundsCore(x, y, width, height, specified);
winforms\Managed\System\WinForms\TabPage.cs (2)
747base.SetBoundsCore (r.X, r.Y, r.Width, r.Height, specified == BoundsSpecified.None ? BoundsSpecified.None : BoundsSpecified.All); 750base.SetBoundsCore (x, y, width, height, specified);
winforms\Managed\System\WinForms\TextBoxBase.cs (1)
1993base.SetBoundsCore(x, y, width, height, specified);
winforms\Managed\System\WinForms\ToolBar.cs (2)
1453base.SetBoundsCore(x, y, width, height, specified); 1477base.SetBoundsCore(x, y, width, height, specified);
winforms\Managed\System\WinForms\ToolStrip.cs (2)
2801base.SetBoundsCore(x, y, width, height, specified); 2822base.SetBoundsCore(x, y, width, height, specified);
winforms\Managed\System\WinForms\TrackBar.cs (1)
1073base.SetBoundsCore(x, y, width, height, specified);