4 overrides of GetScaledBounds
System.Windows.Forms (4)
System\Windows\Forms\ActiveX\AxHost.cs (1)
1155
protected override Rectangle
GetScaledBounds
(Rectangle bounds, SizeF factor, BoundsSpecified specified) => bounds;
System\Windows\Forms\Controls\ListBoxes\ListBox.cs (1)
1459
protected override Rectangle
GetScaledBounds
(Rectangle bounds, SizeF factor, BoundsSpecified specified)
System\Windows\Forms\Form.cs (1)
5125
protected override Rectangle
GetScaledBounds
(Rectangle bounds, SizeF factor, BoundsSpecified specified)
System\Windows\Forms\Scrolling\ScrollBar.cs (1)
484
protected override Rectangle
GetScaledBounds
(Rectangle bounds, SizeF factor, BoundsSpecified specified)
6 references to GetScaledBounds
System.Windows.Forms (4)
System\Windows\Forms\Control.cs (1)
9705
Rectangle rawScaledBounds =
GetScaledBounds
(Bounds, factor, specified);
System\Windows\Forms\Controls\ListBoxes\ListBox.cs (1)
1464
return base.
GetScaledBounds
(bounds, factor, specified);
System\Windows\Forms\Form.cs (1)
5134
return base.
GetScaledBounds
(bounds, factor, specified);
System\Windows\Forms\Scrolling\ScrollBar.cs (1)
496
return base.
GetScaledBounds
(bounds, factor, specified);
System.Windows.Forms.Tests (2)
System\Windows\Forms\ControlTests.cs (1)
1216
public new Rectangle GetScaledBounds(Rectangle bounds, SizeF factor, BoundsSpecified specified) => base.
GetScaledBounds
(bounds, factor, specified);
System\Windows\Forms\ControlTests.Methods.cs (1)
10143
public new Rectangle GetScaledBounds(Rectangle bounds, SizeF factor, BoundsSpecified specified) => base.
GetScaledBounds
(bounds, factor, specified);