mirror of
https://github.com/Stone-Red-Code/docs-desktop.git
synced 2026-09-05 23:42:58 +02:00
Initial winforms content migrated (#18)
* Merge winforms framework content to working branch (#14) * Breadcrumb / TOC / Move net5 to net folder (#15) * change path from net5 to net * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Add .net 5 winforms placeholder article (#16) * added some metadata and adjusted net5 placeholder * corrections * corrections * corrections * Test1 * Swapping landing page vs concept * fix links * Fix links * Fix desc
This commit is contained in:
+35
@@ -0,0 +1,35 @@
|
||||
---
|
||||
title: "NumericUpDown Control"
|
||||
ms.date: "03/30/2017"
|
||||
helpviewer_keywords:
|
||||
- "Windows Forms controls, NumericUpDown control"
|
||||
- "spin button control [Windows Forms], up-down controls"
|
||||
- "up-down controls [Windows Forms], spin button control"
|
||||
- "up-down controls"
|
||||
- "spin button control"
|
||||
- "NumericUpDown control [Windows Forms]"
|
||||
ms.assetid: 32b0c20d-4f37-4aea-873d-faded741d2db
|
||||
---
|
||||
# NumericUpDown Control (Windows Forms)
|
||||
The Windows Forms `NumericUpDown` control looks like a combination of a text box and a pair of arrows that the user can click to adjust a value. The control displays and sets a single numeric value from a list of choices. The user can increase and decrease the number by clicking up and down buttons, by pressing the UP and DOWN ARROW keys, or by typing a number. Clicking the UP ARROW key moves the value toward its maximum; clicking the DOWN ARROW key moves the position toward the minimum. An example where this kind of control might be useful is for a volume control on a music player. Numeric up-down controls are used in some Windows control panel applications.
|
||||
|
||||
## In This Section
|
||||
[NumericUpDown Control Overview](numericupdown-control-overview-windows-forms.md)
|
||||
Introduces the general concepts of the `NumericUpDown` control, which allows users to browse through and select from a list of numeric values.
|
||||
|
||||
[How to: Set and Return Numeric Values with the Windows Forms NumericUpDown Control](set-and-return-numeric-values-with-wf-numericupdown-control.md)
|
||||
Describes how to test for the value of the control.
|
||||
|
||||
[How to: Set the Format for the Windows Forms NumericUpDown Control](how-to-set-the-format-for-the-windows-forms-numericupdown-control.md)
|
||||
Describes how to configure how values are displayed in the control.
|
||||
|
||||
## Reference
|
||||
<xref:System.Windows.Forms.NumericUpDown>
|
||||
Provides reference information on the <xref:System.Windows.Forms.NumericUpDown> class and its members.
|
||||
|
||||
## Related Sections
|
||||
[Controls to Use on Windows Forms](controls-to-use-on-windows-forms.md)
|
||||
Provides a complete list of Windows Forms controls, with links to information on their use.
|
||||
|
||||
[DomainUpDown Control](domainupdown-control-windows-forms.md)
|
||||
Introduces a control similar to <xref:System.Windows.Forms.NumericUpDown>, except that the <xref:System.Windows.Forms.DomainUpDown> control displays string instead of numeric values.
|
||||
Reference in New Issue
Block a user