5 writes to Maximum
System.Windows.Forms (2)
System\Windows\Forms\Controls\UpDown\NumericUpDown.cs (1)
585
Maximum
= DefaultMaximum;
System\Windows\Forms\Printing\PrintPreviewDialog.cs (1)
902
_pageCounter.
Maximum
= new decimal(1000d);
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\FormatControl.Designer.cs (1)
135
decimalPlacesUpDown.
Maximum
= new decimal(new int[] {
System\Windows\Forms\Design\StyleEditorForm.cs (2)
399
_absoluteNumericUpDown.
Maximum
= new decimal(99999u);
433
_percentNumericUpDown.
Maximum
= new decimal(9999u);
5 references to Maximum
System.Windows.Forms (5)
System\Windows\Forms\Controls\UpDown\NumericUpDown.cs (5)
316
throw new ArgumentOutOfRangeException(nameof(value), value, string.Format(SR.InvalidBoundArgument, nameof(Value), value, $"'{nameof(Minimum)}'", $"'{nameof(
Maximum
)}'"));
608
/// Indicates whether the <see cref="
Maximum
"/> property should be persisted.
612
return !
Maximum
.Equals(DefaultMaximum);
656
return $"{s}, Minimum = {Minimum}, Maximum = {
Maximum
}";
770
int numDigits = (int)Math.Floor(Math.Log(Math.Max(-(double)Minimum, (double)
Maximum
), baseSize));