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