3 overrides of ApplyBoundsConstraints
System.Windows.Forms (3)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (1)
1925internal override Rectangle ApplyBoundsConstraints(int suggestedX, int suggestedY, int proposedWidth, int proposedHeight)
System\Windows\Forms\Controls\DateTimePicker\DateTimePicker.cs (1)
1014internal override Rectangle ApplyBoundsConstraints(int suggestedX, int suggestedY, int proposedWidth, int proposedHeight)
System\Windows\Forms\Controls\UpDown\UpDownBase.cs (1)
453internal override Rectangle ApplyBoundsConstraints(int suggestedX, int suggestedY, int proposedWidth, int proposedHeight)
6 references to ApplyBoundsConstraints
System.Windows.Forms (6)
System\Windows\Forms\Control.cs (3)
5137return ApplyBoundsConstraints(0, 0, width, height).Size; 5144return ApplyBoundsConstraints(0, 0, proposedSize.Width, proposedSize.Height).Size; 10038Rectangle adjustedBounds = ApplyBoundsConstraints(x, y, width, height);
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (1)
1933return base.ApplyBoundsConstraints(suggestedX, suggestedY, proposedWidth, proposedHeight);
System\Windows\Forms\Controls\DateTimePicker\DateTimePicker.cs (1)
1017return base.ApplyBoundsConstraints(suggestedX, suggestedY, proposedWidth, PreferredHeight);
System\Windows\Forms\Controls\UpDown\UpDownBase.cs (1)
455return base.ApplyBoundsConstraints(suggestedX, suggestedY, proposedWidth, PreferredHeight);