Abstract base class for text boxes editing numeric values.

Namespace:  Mindscape.WpfElements
Assembly:  Mindscape.WpfElements (in Mindscape.WpfElements.dll)
Version: 3.0.0.0 (3.0.0.0)

Syntax

C#
[TemplatePartAttribute(Name = "PART_TextBox", Type = typeof(TextBox))]
public abstract class NumericTextBoxBase<TNumber> : FilteringTextBoxBase where TNumber : Object, IFormattable, IComparable<TNumber>
Visual Basic (Declaration)
<TemplatePartAttribute(Name := "PART_TextBox", Type := GetType(TextBox))> _
Public MustInherit Class NumericTextBoxBase(Of TNumber As {Object, IFormattable, IComparable(Of TNumber)}) _
	Inherits FilteringTextBoxBase

Type Parameters

TNumber
The type of numeric value.

Inheritance Hierarchy

System..::.Object
  System.Windows.Threading..::.DispatcherObject
    System.Windows..::.DependencyObject
      System.Windows.Media..::.Visual
        System.Windows..::.UIElement
          System.Windows..::.FrameworkElement
            System.Windows.Controls..::.Control
              Mindscape.WpfElements..::.FilteringTextBoxBase
                Mindscape.WpfElements..::.NumericTextBoxBase<(Of <(TNumber>)>)
                  Mindscape.WpfElements..::.CurrencyTextBox
                  Mindscape.WpfElements..::.NumericTextBox
                  Mindscape.WpfElements..::.IntegerTextBox

See Also