13 references to GetSpecifiedBounds
System.Windows.Forms (13)
winforms\Managed\System\WinForms\Control.cs (1)
2840
return CommonProperties.
GetSpecifiedBounds
(this).Size;
winforms\Managed\System\WinForms\DateTimePicker.cs (1)
1193
int width = CommonProperties.
GetSpecifiedBounds
(this).Width;
winforms\Managed\System\WinForms\Form.cs (1)
665
this.Size = CommonProperties.
GetSpecifiedBounds
(this).Size;
winforms\Managed\System\WinForms\Layout\CommonProperties.cs (2)
183
element.SetBounds(
GetSpecifiedBounds
(element), BoundsSpecified.None);
275
Rectangle originalBounds = CommonProperties.
GetSpecifiedBounds
(element);
winforms\Managed\System\WinForms\Layout\DockAndAnchorLayout.cs (2)
684
element.SetBounds(CommonProperties.
GetSpecifiedBounds
(element), BoundsSpecified.None);
692
element.SetBounds(CommonProperties.
GetSpecifiedBounds
(element), BoundsSpecified.All);
winforms\Managed\System\WinForms\Layout\FlowLayout.cs (1)
589
get { return CommonProperties.
GetSpecifiedBounds
(_element).Size; }
winforms\Managed\System\WinForms\Layout\TableLayout.cs (1)
861
return CommonProperties.
GetSpecifiedBounds
(element).Size;
winforms\Managed\System\WinForms\PictureBox.cs (1)
1219
return CommonProperties.
GetSpecifiedBounds
(this).Size;
winforms\Managed\System\WinForms\ToolStrip.cs (2)
267
Rectangle bounds = CommonProperties.
GetSpecifiedBounds
(this);
4696
Size size = CommonProperties.
GetSpecifiedBounds
(this).Size;
winforms\Managed\System\WinForms\ToolStripTextBox.cs (1)
167
Rectangle bounds = CommonProperties.
GetSpecifiedBounds
(TextBox);