Represents an abstract control.
Inherits: UIElement : UIElementBase
Derived elements: ValuedControl, ContentControl, List, DataGrid, TreeView, Table
| Name | Type | Description |
|---|---|---|
| Block | Boolean | Render the control as a block element rather than an inline element. |
| Label | String | The text control for the item. Usually displayed above or on the left of the input field. |
| Description | String | Description for the control. Typically displayed below the input field. |
| Required | Boolean | Required value to enter. Please note that this is only a visual representation of the required input in the input field (the specific look depends on the user interface theme). Use template validators to manage checks. |
| Disabled | Boolean | The control is not available for input. Typically the Bind binding is used to control this field. |
| Width | Length | The control width. By default, an element occupies 100% of the width of the parent element. For some containers (e.g. Toolbar) the width of the nested elements will be set to a certain default value. |
| TabIndex | Int32 | The control’s ordinal number in the chain of transitions by the Tab key. A value of "-1" excludes the item from the navigation chain. |
| TestId | String | The control’s ID for testing tools. |
| Popover | Popover | The tooltip for the control. Displayed as a link on the right of the control. |
| Hint | Popover | The tooltip for the control. It is displayed as
after the mark. The icon can be replaced by specifying the Icon property of the Popover object. |
| Validator | Validator | Allows to set properties of the control’s validator, such as position or width. |
| AddOns | UIElementCollection | Additional controls. Usually these are hyperlinks that execute some additional commands. |
| Link | UIElement | Additional link associated with the control. Displays in the upper right corner of the control. This is typically a hyperlink. |
| Base item properties | ||
XAML
Result