Click or drag to resize

MaskedTextStepper<T> Class

Masked text box that provides a value converted to/from text
Inheritance Hierarchy
System.Object
  Eto.Widget
    Eto.Forms.BindableWidget
      Eto.Forms.Control
        Eto.Forms.CommonControl
          Eto.Forms.TextControl
            Eto.Forms.TextBox
              Eto.Forms.TextStepper
                Eto.Forms.MaskedTextStepper
                  Eto.Forms.MaskedTextStepper<T>
                    Eto.Forms.NumericMaskedTextStepper<T>

Namespace:  Eto.Forms
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
public class MaskedTextStepper<T> : MaskedTextStepper

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "T:Eto.Forms.MaskedTextStepper`1"]

The MaskedTextStepper<T> type exposes the following members.

Constructors
  NameDescription
Public methodMaskedTextStepper<T>()
Initializes a new instance of the MaskedTextStepper<T> class.
Public methodMaskedTextStepper<T>(IMaskedTextProvider<T>)
Initializes a new instance of the MaskedTextStepper<T> class with the specified masked text provider.
Top
Properties
  NameDescription
Public propertyProvider
Gets or sets the provider for the text box
Public propertyValue
Gets or sets the translated value of the masked text.
Public propertyValueBinding
Gets a binding for the Value property.
Top
Events
  NameDescription
Public eventValueChanged
Event to handle when the Value property changes
Top
Remarks
This is useful when the text can be converted to another type (e.g. DateTime, numeric, etc). The Provider specified for the control is responsible for converting the value.
See Also