-
Notifications
You must be signed in to change notification settings - Fork 3
ClickSelectTextBox
JaykeBird edited this page Feb 21, 2023
·
6 revisions
Back to home | Back to Reference | View raw text
A TextBox where all the text is automatically selected when the text box gets focus (i.e. mouse click or keyboard focus).
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SolidShineUi
SolidShineUi.ClickSelectTextBox[[ClickSelectTextBox]]
end
subgraph System.Windows.Controls
System.Windows.Controls.TextBox[[TextBox]]
end
System.Windows.Controls.TextBox --> SolidShineUi.ClickSelectTextBox
Type | Name | Methods |
---|---|---|
bool |
SelectOnFocus Get or set whether all text will be selected when the text box receives focus. |
get, set |
A TextBox where all the text is automatically selected when the text box gets focus (i.e. mouse click or keyboard focus).
TextBox
public ClickSelectTextBox()
Creates a new ClickSelectTextBox and defines the default event handlers.
public bool SelectOnFocus { get; set; }
Get or set whether all text will be selected when the text box receives focus.
Generated with ModularDoc