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)
1457
protected override Rectangle
GetScaledBounds
(Rectangle bounds, SizeF factor, BoundsSpecified specified)
System\Windows\Forms\Form.cs (1)
5202
protected override Rectangle
GetScaledBounds
(Rectangle bounds, SizeF factor, BoundsSpecified specified)
System\Windows\Forms\Scrolling\ScrollBar.cs (1)
477
protected override Rectangle
GetScaledBounds
(Rectangle bounds, SizeF factor, BoundsSpecified specified)
6 references to GetScaledBounds
System.Windows.Forms (4)
System\Windows\Forms\Control.cs (1)
9813
Rectangle rawScaledBounds =
GetScaledBounds
(Bounds, factor, specified);
System\Windows\Forms\Controls\ListBoxes\ListBox.cs (1)
1462
return base.
GetScaledBounds
(bounds, factor, specified);
System\Windows\Forms\Form.cs (1)
5211
return base.
GetScaledBounds
(bounds, factor, specified);
System\Windows\Forms\Scrolling\ScrollBar.cs (1)
489
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);