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