1 override of SetClientSizeCore
System.Windows.Forms (1)
System\Windows\Forms\Form.cs (1)
5284protected override void SetClientSizeCore(int x, int y)
5 references to SetClientSizeCore
System.Windows.Forms (3)
System\Windows\Forms\Control.cs (1)
1176set => SetClientSizeCore(value.Width, value.Height);
System\Windows\Forms\Form.cs (2)
5287base.SetClientSizeCore(x, y); 5311base.SetClientSizeCore(x, y);
System.Windows.Forms.Tests (2)
System\Windows\Forms\ControlTests.cs (1)
1428public new void SetClientSizeCore(int x, int y) => base.SetClientSizeCore(x, y);
System\Windows\Forms\ControlTests.Methods.cs (1)
10176public new void SetBoundsCore(int x, int y, int width, int height, BoundsSpecified specified) => base.SetBoundsCore(x, y, width, height, specified); public new void SetClientSizeCore(int width, int height) => base.SetClientSizeCore(width, height);