5 overrides of ApplyBoundsConstraints
System.Windows.Forms (5)
winforms\Managed\System\WinForms\ComboBox.cs (1)
2136
internal override Rectangle
ApplyBoundsConstraints
(int suggestedX, int suggestedY, int proposedWidth, int proposedHeight) {
winforms\Managed\System\WinForms\DateTimePicker.cs (1)
1186
internal override Rectangle
ApplyBoundsConstraints
(int suggestedX, int suggestedY, int proposedWidth, int proposedHeight) {
winforms\Managed\System\WinForms\Form.cs (1)
5947
internal override Rectangle
ApplyBoundsConstraints
(int suggestedX, int suggestedY, int proposedWidth, int proposedHeight) {
winforms\Managed\System\WinForms\ToolStripDropDown.cs (1)
1187
internal override Rectangle
ApplyBoundsConstraints
(int suggestedX, int suggestedY, int proposedWidth, int proposedHeight) {
winforms\Managed\System\WinForms\UpDownBase.cs (1)
722
internal override Rectangle
ApplyBoundsConstraints
(int suggestedX, int suggestedY, int proposedWidth, int proposedHeight) {
8 references to ApplyBoundsConstraints
System.Windows.Forms (8)
winforms\Managed\System\WinForms\ComboBox.cs (1)
2143
return base.
ApplyBoundsConstraints
(suggestedX,suggestedY, proposedWidth, proposedHeight);
winforms\Managed\System\WinForms\Control.cs (3)
6441
return
ApplyBoundsConstraints
(0,0,width, height).Size;
6448
return
ApplyBoundsConstraints
(0,0,proposedSize.Width,proposedSize.Height).Size;
11874
Rectangle adjustedBounds =
ApplyBoundsConstraints
(x,y, width, height);
winforms\Managed\System\WinForms\DateTimePicker.cs (1)
1188
return base.
ApplyBoundsConstraints
(suggestedX,suggestedY, proposedWidth, PreferredHeight);
winforms\Managed\System\WinForms\Form.cs (1)
5949
Rectangle adjustedBounds = base.
ApplyBoundsConstraints
(suggestedX, suggestedY, proposedWidth, proposedHeight);
winforms\Managed\System\WinForms\ToolStripDropDown.cs (1)
1188
Rectangle adjustedBounds = base.
ApplyBoundsConstraints
(suggestedX, suggestedY, proposedWidth, proposedHeight);
winforms\Managed\System\WinForms\UpDownBase.cs (1)
723
return base.
ApplyBoundsConstraints
(suggestedX,suggestedY, proposedWidth, PreferredHeight);