4 overrides of GetScaledBounds
System.Windows.Forms (4)
System\Windows\Forms\ActiveX\AxHost.cs (1)
1154
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)
5131
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)
9672
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)
5140
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)
1214
public new Rectangle GetScaledBounds(Rectangle bounds, SizeF factor, BoundsSpecified specified) => base.
GetScaledBounds
(bounds, factor, specified);
System\Windows\Forms\ControlTests.Methods.cs (1)
10174
public new Rectangle GetScaledBounds(Rectangle bounds, SizeF factor, BoundsSpecified specified) => base.
GetScaledBounds
(bounds, factor, specified);