12 references to GetSpecifiedBounds
System.Windows.Forms (12)
System\Windows\Forms\Control.cs (1)
2103return CommonProperties.GetSpecifiedBounds(this).Size;
System\Windows\Forms\Controls\DateTimePicker\DateTimePicker.cs (1)
1023int width = CommonProperties.GetSpecifiedBounds(this).Width;
System\Windows\Forms\Controls\PictureBox\PictureBox.cs (1)
1036return CommonProperties.GetSpecifiedBounds(this).Size;
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
200Rectangle bounds = CommonProperties.GetSpecifiedBounds(this);
System\Windows\Forms\Controls\ToolStrips\ToolStripTextBox.cs (1)
92Rectangle bounds = CommonProperties.GetSpecifiedBounds(TextBox);
System\Windows\Forms\Form.cs (1)
504Size = CommonProperties.GetSpecifiedBounds(this).Size;
System\Windows\Forms\Layout\CommonProperties.cs (2)
175element.SetBounds(GetSpecifiedBounds(element), BoundsSpecified.None); 286Rectangle originalBounds = GetSpecifiedBounds(element);
System\Windows\Forms\Layout\DefaultLayout.cs (2)
953element.SetBounds(CommonProperties.GetSpecifiedBounds(element), BoundsSpecified.None); 965element.SetBounds(CommonProperties.GetSpecifiedBounds(element), BoundsSpecified.All);
System\Windows\Forms\Layout\FlowLayout.ElementProxy.cs (1)
73public virtual Size SpecifiedSize => CommonProperties.GetSpecifiedBounds(_element!).Size;
System\Windows\Forms\Layout\TableLayout.cs (1)
869: CommonProperties.GetSpecifiedBounds(element).Size;