Combined button and popup list for selecting options. 更多...
import 语句: | import QtQuick.Controls 2.5 |
Since: | Qt 5.7 |
继承: | Control |
ComboBox is a combined button and popup list. It provides a means of presenting a list of options to the user in a way that takes up the minimum amount of screen space.
ComboBox is populated with a data model. The data model is commonly a JavaScript array, a ListModel or an integer, but other types of data models are also supported.
ComboBox { model: ["First", "Second", "Third"] }
ComboBox can be made editable . An editable combo box auto-completes its text based on what is available in the model.
The following example demonstrates appending content to an editable combo box by reacting to the accepted 信号。
ComboBox { editable: true model: ListModel { id: model ListElement { text: "Banana" } ListElement { text: "Apple" } ListElement { text: "Coconut" } } onAccepted: { if (find(editText) === -1) model.append({text: editText}) } }
ComboBox
is able to visualize standard
data models
that provide the
modelData
role:
When using models that have multiple named roles, ComboBox must be configured to use a specific text role for its display text and delegate 实例。
ComboBox { textRole: "key" model: ListModel { ListElement { key: "First"; value: 123 } ListElement { key: "Second"; value: 456 } ListElement { key: "Third"; value: 789 } } }
注意:
若
ComboBox
is assigned a data model that has multiple named roles, but
textRole
is not defined,
ComboBox
is unable to visualize it and throws a
ReferenceError: modelData is not defined
.
另请参阅 Customizing ComboBox , 输入控件 ,和 Focus Management in Qt Quick Controls 2 .
[read-only] acceptableInput : bool |
This property holds whether the combo box contains acceptable text in the editable text field.
If a validator has been set, the value is
true
only if the current text is acceptable to the validator as a final string (not as an intermediate string).
This property was introduced in QtQuick.Controls 2.2 (Qt 5.9).
[read-only] count : int |
This property holds the number of items in the combo box.
currentIndex : int |
This property holds the index of the current item in the combo box.
默认值为
-1
当
count
is
0
,和
0
否则。
另请参阅 activated() , currentText ,和 highlightedIndex .
[read-only] currentText : string |
This property holds the text of the current item in the combo box.
另请参阅 currentIndex , displayText , textRole ,和 editText .
delegate : Component |
This property holds a delegate that presents an item in the combo box popup.
It is recommended to use ItemDelegate (or any other AbstractButton derivatives) as the delegate. This ensures that the interaction works as expected, and the popup will automatically close when appropriate. When other types are used as the delegate, the popup must be closed manually. For example, if MouseArea is used:
delegate: Rectangle { // ... MouseArea { // ... onClicked: comboBox.popup.close() } }
另请参阅 ItemDelegate and Customizing ComboBox .
displayText : string |
This property holds the text that is displayed on the combo box button.
By default, the display text presents the current selection. That is, it follows the text of the current item. However, the default display text can be overridden with a custom value.
ComboBox { currentIndex: 1 displayText: "Size: " + currentText model: ["S", "M", "L"] }
另请参阅 currentText and textRole .
down : bool |
This property holds whether the combo box button is visually down.
Unless explicitly set, this property is
true
当
pressed
or
popup.visible
is
true
. To return to the default value, set this property to
undefined
.
This property was introduced in QtQuick.Controls 2.2 (Qt 5.9).
editText : string |
This property holds the text in the text field of an editable combo box.
This property was introduced in QtQuick.Controls 2.2 (Qt 5.9).
另请参阅 editable , currentText ,和 displayText .
editable : bool |
This property holds whether the combo box is editable.
默认值为
false
.
This property was introduced in QtQuick.Controls 2.2 (Qt 5.9).
另请参阅 validator .
flat : bool |
This property holds whether the combo box button is flat.
A flat combo box button does not draw a background unless it is interacted with. In comparison to normal combo boxes, flat combo boxes provide looks that make them stand out less from the rest of the UI. For instance, when placing a combo box into a tool bar, it may be desirable to make the combo box flat so it matches better with the flat looks of tool buttons.
默认值为
false
.
该特性在 QtQuick.Controls 2.1 (Qt 5.8) 引入。
[read-only] highlightedIndex : int |
This property holds the index of the highlighted item in the combo box popup list.
When a highlighted item is activated, the popup is closed,
currentIndex
被设为
highlightedIndex
, and the value of this property is reset to
-1
, as there is no longer a highlighted item.
另请参阅 highlighted() and currentIndex .
[read-only] implicitIndicatorHeight : real |
This property holds the implicit indicator height.
值等于
indicator ? indicator.implicitHeight : 0
.
This is typically used, together with implicitContentHeight and implicitBackgroundHeight , to calculate the implicitHeight .
该特性在 QtQuick.Controls 2.5 (Qt 5.12) 引入。
另请参阅 implicitIndicatorWidth .
[read-only] implicitIndicatorWidth : real |
This property holds the implicit indicator width.
值等于
indicator ? indicator.implicitWidth : 0
.
This is typically used, together with implicitContentWidth and implicitBackgroundWidth , to calculate the implicitWidth .
该特性在 QtQuick.Controls 2.5 (Qt 5.12) 引入。
另请参阅 implicitIndicatorHeight .
indicator : Item |
This property holds the drop indicator item.
另请参阅 Customizing ComboBox .
[read-only] inputMethodComposing : bool |
This property holds whether an editable combo box has partial text input from an input method.
While it is composing, an input method may rely on mouse or key events from the combo box to edit or commit the partial text. This property can be used to determine when to disable event handlers that may interfere with the correct operation of an input method.
This property was introduced in QtQuick.Controls 2.2 (Qt 5.9).
Provides hints to the input method about the expected content of the combo box and how it should operate.
默认值为
Qt.ImhNoPredictiveText
.
The value is a bit-wise combination of flags or
Qt.ImhNone
if no hints are set.
Flags that alter behavior are:
Flags that restrict input (exclusive flags) are:
掩码:
This property was introduced in QtQuick.Controls 2.2 (Qt 5.9).
This property holds the model providing data for the combo box.
ComboBox { textRole: "key" model: ListModel { ListElement { key: "First"; value: 123 } ListElement { key: "Second"; value: 456 } ListElement { key: "Third"; value: 789 } } }
popup : Popup |
This property holds the popup.
The popup can be opened or closed manually, if necessary:
onSpecialEvent: comboBox.popup.close()
另请参阅 Customizing ComboBox .
pressed : bool |
This property holds whether the combo box button is physically pressed. A button can be pressed by either touch or key events.
另请参阅 down .
textRole : string |
This property holds the model role used for populating the combo box.
When the model has multiple roles,
textRole
can be set to determine which role should be displayed.
另请参阅 model , currentText , displayText ,和 ComboBox Model Roles .
This property holds an input text validator for an editable combo box.
When a validator is set, the text field will only accept input which leaves the text property in an intermediate state. The accepted signal will only be emitted if the text is in an acceptable state when the 返回 or Enter key is pressed.
The currently supported validators are
IntValidator
,
DoubleValidator
,和
RegExpValidator
. An example of using validators is shown below, which allows input of integers between
0
and
10
into the text field:
ComboBox { model: 10 editable: true validator: IntValidator { top: 9 bottom: 0 } }
This property was introduced in QtQuick.Controls 2.2 (Qt 5.9).
另请参阅 acceptableInput , accepted ,和 editable .
此信号发射当 返回 or Enter key is pressed on an editable combo box.
You can handle this signal in order to add the newly entered item to the model, for example:
ComboBox { editable: true model: ListModel { id: model ListElement { text: "Banana" } ListElement { text: "Apple" } ListElement { text: "Coconut" } } onAccepted: { if (find(editText) === -1) model.append({text: editText}) } }
Before the signal is emitted, a check is done to see if the string exists in the model. If it does, currentIndex will be set to its index, and currentText to the string itself.
After the signal has been emitted, and if the first check failed (that is, the item did not exist), another check will be done to see if the item was added by the signal handler. If it was, the
currentIndex
and
currentText
are updated accordingly. Otherwise, they will be set to
-1
and
""
,分别。
注意: 若有 validator set on the combo box, the signal will only be emitted if the input is in an acceptable state.
This signal was introduced in QtQuick.Controls 2.2 (Qt 5.9).
void activated ( int index ) |
This signal is emitted when the item at index is activated by the user.
An item is activated when it is selected while the popup is open, causing the popup to close (and currentIndex to change), or while the popup is closed and the combo box is navigated via keyboard, causing the currentIndex to change. The currentIndex property is set to index .
另请参阅 currentIndex .
void highlighted ( int index ) |
This signal is emitted when the item at index in the popup list is highlighted by the user.
The highlighted signal is only emitted when the popup is open and an item is highlighted, but not necessarily activated .
另请参阅 highlightedIndex .
Decrements the current index of the combo box, or the highlighted index if the popup list is visible.
另请参阅 currentIndex and highlightedIndex .
Returns the index of the specified
text
,或
-1
if no match is found.
The way the search is performed is defined by the specified match
flags
. By default, combo box performs case sensitive exact matching (
Qt.MatchExactly
). All other match types are case-insensitive unless the
Qt.MatchCaseSensitive
标志也有指定。
常量 | 描述 |
---|---|
Qt.MatchExactly
|
The search term matches exactly (default). |
Qt.MatchRegExp
|
The search term matches as a regular expression. |
Qt.MatchWildcard
|
The search term matches using wildcards. |
Qt.MatchFixedString
|
The search term matches as a fixed string. |
Qt.MatchStartsWith
|
搜索术语匹配项开头。 |
Qt.MatchEndsWidth
|
搜索术语匹配项末尾。 |
Qt.MatchContains
|
搜索术语包含在项中。 |
Qt.MatchCaseSensitive
|
搜索区分大小写。 |
另请参阅 textRole .
Increments the current index of the combo box, or the highlighted index if the popup list is visible.
另请参阅 currentIndex and highlightedIndex .
Selects all the text in the editable text field of the combo box.
This method was introduced in QtQuick.Controls 2.2 (Qt 5.9).
另请参阅 editText .
Returns the text for the specified index , or an empty string if the index is out of bounds.
另请参阅 textRole .