Click or drag to resize

NumericStepper Class

Control for the user to enter a numeric value
Inheritance Hierarchy

Namespace:  Eto.Forms
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
public class NumericStepper : CommonControl

The NumericStepper type exposes the following members.

Constructors
  NameDescription
Public methodNumericStepper
Initializes a new instance of the NumericStepper class
Top
Properties
  NameDescription
Public propertyCultureInfo
Specifies the culture to show the numeric value in (default is CurrentCulture).
Public propertyCode exampleDecimalPlaces
Gets or sets the number of digits to display after the decimal.
Public propertyFormatString
Gets or sets the format string for the display of the numeric value.
Public propertyIncrement
Gets or sets the value to increment when the user clicks on the stepper buttons.
Public propertyMaximumDecimalPlaces
Gets or sets the maximum number of decimal places that can be shown.
Public propertyMaxValue
Gets or sets the maximum value that can be entered.
Public propertyMinValue
Gets or sets the minimum value that can be entered.
Public propertyReadOnly
Gets or sets a value indicating whether this NumericStepper is read only.
Public propertyTextColor
Gets or sets the color of the text.
Public propertyValue
Gets or sets the value.
Public propertyValueBinding
Gets the binding for the Value property.
Top
Methods
  NameDescription
Protected methodGetCallback
Gets an instance of an object used to perform callbacks to the widget from handler implementations
(Overrides ControlGetCallback.)
Protected methodOnValueChanged
Raises the ValueChanged event.
Top
Events
  NameDescription
Public eventValueChanged
Occurs when the Value changed.
Top
Remarks
This usually presents with a Stepper to increase/decrease the value, or a specific numeric keyboard.
See Also