Editors
Last updated
Was this helpful?
Last updated
Was this helpful?
Wisej.NET provides editor controls for user input. These typically correspond to an element in the browser.
The editors come in four categories: TextBox
, UpDown
(Spinners), Pickers, and ComboBox
controls. This section covers TextBox
, UpDown
, and Pickers, while the is documented under .
All TextBox
controls derive from the TextBoxBase
class, sharing consistent properties, events, and features.
In the browser, these render as a container with an element inside.
All UpDown
controls derive from the UpDownBase
class. In the browser, they render as a <div>
container with an <input>
element and two +/- buttons.
Wisej.NET includes numeric, text, and time spinners.
The DateTimePicker
is the sole Picker control, inheriting directly from the Control
base class.