A switch. 更多...
import 语句: | import QtQuick.Controls 1.4 |
Since: | Qt 5.2 |
继承: |
On and Off states of a Switch.
A Switch is a toggle button that can be switched on (checked) or off (unchecked). Switches are typically used to represent features in an application that can be enabled or disabled without affecting others.
On mobile platforms, switches are commonly used to enable or disable features.
Column { Switch { checked: true } Switch { checked: false } }
You can create a custom appearance for a Switch by assigning a SwitchStyle .
activeFocusOnPress : bool |
此特性是
true
if the control takes the focus when it is pressed;
forceActiveFocus()
will be called on the control.
checked : bool |
此特性是
true
if the control is checked. The default value is
false
.
exclusiveGroup : ExclusiveGroup |
This property stores the ExclusiveGroup that the control belongs to.
[read-only] pressed : bool |
此特性是
true
when the control is pressed.
This property was introduced in QtQuick.Controls 1.3.
This signal is emitted when the control is clicked.
注意:
相应处理程序是
onClicked
.
This signal was introduced in QtQuick.Controls 1.3.