Single-line text input field. 更多...
| import 語句: | import QtQuick.Controls 2.2 |
| Since: | Qt 5.7 |
| 繼承: | TextInput |
TextField is a single line text editor. TextField extends TextInput 采用 占位符文本 功能,並添加裝飾。
|
A text field in its normal state. |
|
A text field that has active focus. |
|
A text field that is disabled. |
TextField {
placeholderText: qsTr("Enter name")
}
另請參閱 TextArea , Customizing TextField ,和 輸入控件 .
|
background : Item |
此特性保持背景項。
注意: If the background item has no explicit size specified, it automatically follows the control's size. In most cases, there is no need to specify width or height for a background item.
注意: Most controls use the implicit size of the background item to calculate the implicit size of the control itself. If you replace the background item with a custom one, you should also consider providing a sensible implicit size for it (unless it is an item like Image which has its own implicit size).
另請參閱 Customizing TextField .
此特性保持最後聚焦更改的原因。
注意: This property does not indicate whether the control has active focus , but the reason why the control either gained or lost focus.
| 常量 | 描述 |
|---|---|
Qt.MouseFocusReason
|
發生鼠標動作。 |
Qt.TabFocusReason
|
按下 Tab 鍵。 |
Qt.BacktabFocusReason
|
發生 Backtab。輸入可能包括 Shift 或 Control 鍵;如 Shift+Tab。 |
Qt.ActiveWindowFocusReason
|
窗口係統使此窗口活動 (或不活動)。 |
Qt.PopupFocusReason
|
應用程序打開/關閉彈齣窗口,抓取/釋放鍵盤焦點。 |
Qt.ShortcutFocusReason
|
用戶鍵入標簽的好友快捷方式 |
Qt.MenuBarFocusReason
|
菜單欄獲得聚焦。 |
Qt.OtherFocusReason
|
另一原因,通常特定於應用程序。 |
另請參閱 Item::activeFocus .
This property determines whether the text field accepts hover events. The default value is
false
.
This QML property was introduced in QtQuick.Controls 2.1 (Qt 5.8).
另請參閱 hovered .
This property holds whether the text field is hovered.
This QML property was introduced in QtQuick.Controls 2.1 (Qt 5.8).
另請參閱 hoverEnabled .
This property holds the hint that is displayed in the TextField before the user enters text.
|
void pressAndHold ( MouseEvent event ) |
This signal is emitted when there is a long press (the delay depends on the platform plugin). The event parameter provides information about the press, including the x and y position of the press, and which button is pressed.
|
void pressed ( MouseEvent event ) |
This signal is emitted when the text field is pressed by the user. The event parameter provides information about the press, including the x and y position of the press, and which button is pressed.
This QML signal was introduced in QtQuick.Controls 2.1 (Qt 5.8).
另請參閱 released and pressAndHold .
|
void released ( MouseEvent event ) |
This signal is emitted when the text field is released by the user. The event parameter provides information about the release, including the x and y position of the press, and which button is pressed.
This QML signal was introduced in QtQuick.Controls 2.1 (Qt 5.8).
另請參閱 pressed and pressAndHold .