Click or drag to resize

MaskedTextStepperT Class

Masked text box that provides a value converted to/from text
Inheritance Hierarchy
SystemObject
  EtoWidget
    Eto.FormsBindableWidget
      Eto.FormsControl
        Eto.FormsCommonControl
          Eto.FormsTextControl
            Eto.FormsTextBox
              Eto.FormsTextStepper
                Eto.FormsMaskedTextStepper
                  Eto.FormsMaskedTextStepperT
                    Eto.FormsNumericMaskedTextStepperT

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 MaskedTextStepperT type exposes the following members.

Constructors
  NameDescription
Public methodMaskedTextStepperT
Initializes a new instance of the MaskedTextStepperT class.
Public methodMaskedTextStepperT(IMaskedTextProviderT)
Initializes a new instance of the MaskedTextStepperT 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