13 references to GetSpecifiedBounds
System.Windows.Forms (13)
System\Windows\Forms\Control.cs (1)
2102return 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 (2)
201Rectangle bounds = CommonProperties.GetSpecifiedBounds(this); 4573Size size = CommonProperties.GetSpecifiedBounds(this).Size;
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)
180element.SetBounds(GetSpecifiedBounds(element), BoundsSpecified.None); 291Rectangle 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)
867: CommonProperties.GetSpecifiedBounds(element).Size;