10 instantiations of NumericUpDown
System.Windows.Forms (1)
winforms\Managed\System\WinForms\Printing\PrintPreviewDialog.cs (1)
1308this.pageCounter = new System.Windows.Forms.NumericUpDown();
System.Workflow.ComponentModel (9)
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (9)
266this.marginsRightInput = new System.Windows.Forms.NumericUpDown(); 267this.marginsBottomInput = new System.Windows.Forms.NumericUpDown(); 272this.marginsTopInput = new System.Windows.Forms.NumericUpDown(); 273this.marginsLeftInput = new System.Windows.Forms.NumericUpDown(); 280this.fitToPagesTallInput = new System.Windows.Forms.NumericUpDown(); 281this.fitToPagesWideInput = new System.Windows.Forms.NumericUpDown(); 282this.adjustToScaleInput = new System.Windows.Forms.NumericUpDown(); 303this.footerMarginInput = new System.Windows.Forms.NumericUpDown(); 314this.headerMarginInput = new System.Windows.Forms.NumericUpDown();
25 references to NumericUpDown
System.Windows.Forms (16)
winforms\Managed\System\WinForms\NumericUpDown.cs (15)
132DefaultValue(NumericUpDown.DefaultDecimalPlaces), 158DefaultValue(NumericUpDown.DefaultHexadecimal), 333DefaultValue(NumericUpDown.DefaultThousandsSeparator), 397/// Occurs when the <see cref='System.Windows.Forms.NumericUpDown.Value'/> property has been changed in some way. 556/// <para>Raises the <see cref='System.Windows.Forms.NumericUpDown.OnValueChanged'/> event.</para> 660/// <para>Indicates whether the <see cref='System.Windows.Forms.NumericUpDown.Increment'/> property should be 664return !Increment.Equals(NumericUpDown.DefaultIncrement); 668/// <para>Indicates whether the <see cref='System.Windows.Forms.NumericUpDown.Maximum'/> property should be persisted.</para> 671return !Maximum.Equals(NumericUpDown.DefaultMaximum); 675/// <para>Indicates whether the <see cref='System.Windows.Forms.NumericUpDown.Minimum'/> property should be persisted.</para> 678return !Minimum.Equals(NumericUpDown.DefaultMinimum); 682/// <para>Indicates whether the <see cref='System.Windows.Forms.NumericUpDown.Value'/> property should be persisted.</para> 685return !Value.Equals(NumericUpDown.DefaultValue); 902public NumericUpDownAccessibleObject(NumericUpDown owner) : base(owner) { 911return ((NumericUpDown)Owner).GetAccessibleName(baseName);
winforms\Managed\System\WinForms\Printing\PrintPreviewDialog.cs (1)
42private System.Windows.Forms.NumericUpDown pageCounter;
System.Workflow.ComponentModel (9)
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (9)
24private NumericUpDown marginsBottomInput; 25private NumericUpDown marginsRightInput; 26private NumericUpDown marginsTopInput; 31private NumericUpDown marginsLeftInput; 33private NumericUpDown adjustToScaleInput; 36private NumericUpDown fitToPagesWideInput; 37private NumericUpDown fitToPagesTallInput; 59private NumericUpDown headerMarginInput; 60private NumericUpDown footerMarginInput;