# Editors

Wisej.NET provides editor controls for user input. These typically correspond to an [\<input>](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input) 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 [ComboBox](https://docs.wisej.com/docs/controls/lists/combobox) is documented under [Lists & Grids](https://docs.wisej.com/docs/controls/lists).

## TextBox Controls

All `TextBox` controls derive from the `TextBoxBase` class, sharing consistent properties, events, and features.

In the browser, these render as a [\<div>](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/div) container with an [\<input>](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input) element inside.

![TextBox controls hierarchy](https://553579532-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MF1D11gPs_az3xaKusw%2Fuploads%2Fw0BVq7oIKpvpGWE3VG0N%2Fimage.png?alt=media\&token=93d9aae3-1e3d-4724-ad19-3d85340b6afb)

## UpDown (Spinner) Controls

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.

![UpDown controls types](https://553579532-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MF1D11gPs_az3xaKusw%2Fuploads%2FaCgvMzatPrlkff1bVYdf%2Fimage.png?alt=media\&token=5abf1536-67c6-4e7c-b7ce-a4cf9ec67e68)

## Picker Controls

The `DateTimePicker` is the sole Picker control, inheriting directly from the `Control` base class.

![DateTimePicker control](https://553579532-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MF1D11gPs_az3xaKusw%2Fuploads%2Fgit-blob-18adf85808e22a4a2be70a292eeead9dc2dcda03%2Fimage.png?alt=media)
