[This is preliminary documentation and is subject to change.]

Represents a Windows spin box (also known as an up-down control) that displays numeric values.

Namespace:  Tools.WindowsT.WPF.ControlsT
Assembly:  Tools.Windows (in Tools.Windows.dll) Version: 1.5.2.0

Author: Đonny (dzonny@dzonny.cz)

Vertion history

1.5.2 (Nightly)

Syntax

C#
[TemplatePartAttribute(Name = "PART_EditableTextBox", Type = typeof(TextBox))]
public class NumericUpDown : Control
Visual Basic (Declaration)
<TemplatePartAttribute(Name := "PART_EditableTextBox", Type := GetType(TextBox))> _
Public Class NumericUpDown _
	Inherits Control
Visual C++
[TemplatePartAttribute(Name = L"PART_EditableTextBox", Type = typeof(TextBox))]
public ref class NumericUpDown : public Control
J#
/** @attribute TemplatePartAttribute(Name = "PART_EditableTextBox", Type = TextBox) */
public class NumericUpDown extends Control
JScript
public class NumericUpDown extends Control

Remarks

This is companion class to NumericUpDown.

This class is bsed on http://msdn.microsoft.com/en-us/library/ms771573.aspx, converted by http://labs.developerfusion.co.uk/convert/csharp-to-vb.aspx

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
              Tools.WindowsT.WPF.ControlsT..::.NumericUpDown

See Also