5 writes to Maximum
System.Windows.Forms (2)
System\Windows\Forms\Controls\UpDown\NumericUpDown.cs (1)
585Maximum = 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)
135decimalPlacesUpDown.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)
316throw 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. 612return !Maximum.Equals(DefaultMaximum); 656return $"{s}, Minimum = {Minimum}, Maximum = {Maximum}"; 770int numDigits = (int)Math.Floor(Math.Log(Math.Max(-(double)Minimum, (double)Maximum), baseSize));