Qt Quick Controls offers a selection of controls that are used as delegates in views.
CheckDelegate | Item delegate with a check indicator that can be toggled on or off |
RadioDelegate | Exclusive item delegate with a radio indicator that can be toggled on or off |
SwipeDelegate | Swipable item delegate |
SwitchDelegate | Item delegate with a switch indicator that can be toggled on or off |
Each type of delegate has its own specific target use case. The following sections offer guidelines for choosing the appropriate type of delegate, depending on the use case.
ItemDelegate presents a checkable control that can be pressed and clicked by the user.
RadioDelegate presents a checkable control that can be toggled on (checked) or off (unchecked). Radio delegates are typically used to select one option from a set of options.
另请参阅 RadioButton Control .
SwipeDelegate presents a view item that can be swiped left or right to expose more options or information.
SwitchDelegate presents a switchable delegate that can be toggled on or off.
另请参阅 Switch Control .