4 overrides of GetScaledBounds
System.Windows.Forms (4)
System\Windows\Forms\ActiveX\AxHost.cs (1)
1152protected override Rectangle GetScaledBounds(Rectangle bounds, SizeF factor, BoundsSpecified specified) => bounds;
System\Windows\Forms\Controls\ListBoxes\ListBox.cs (1)
1459protected override Rectangle GetScaledBounds(Rectangle bounds, SizeF factor, BoundsSpecified specified)
System\Windows\Forms\Form.cs (1)
5218protected override Rectangle GetScaledBounds(Rectangle bounds, SizeF factor, BoundsSpecified specified)
System\Windows\Forms\Scrolling\ScrollBar.cs (1)
477protected override Rectangle GetScaledBounds(Rectangle bounds, SizeF factor, BoundsSpecified specified)
4 references to GetScaledBounds
System.Windows.Forms (4)
System\Windows\Forms\Control.cs (1)
10539Rectangle rawScaledBounds = GetScaledBounds(Bounds, factor, specified);
System\Windows\Forms\Controls\ListBoxes\ListBox.cs (1)
1464return base.GetScaledBounds(bounds, factor, specified);
System\Windows\Forms\Form.cs (1)
5227return base.GetScaledBounds(bounds, factor, specified);
System\Windows\Forms\Scrolling\ScrollBar.cs (1)
489return base.GetScaledBounds(bounds, factor, specified);