Qt Quick Controls 2.0 圆形旋转框
Qt Quick Controls 2.0 circular spinbox
在 Qt 中,可以创建 circular spinboxes?
Qt Quick Controls 2.0 有这样的功能吗?
有人知道如何通过 customizing the spinbox 实现吗?
SpinBox::wrap 已在 QtQuick.Controls 2.3 (Qt 5.10) 中引入。
This property holds whether the spinbox wraps. The default value is false
.
If wrap is true
, stepping past to
changes the value to from
and vice versa.
在 Qt 中,可以创建 circular spinboxes?
Qt Quick Controls 2.0 有这样的功能吗?
有人知道如何通过 customizing the spinbox 实现吗?
SpinBox::wrap 已在 QtQuick.Controls 2.3 (Qt 5.10) 中引入。
This property holds whether the spinbox wraps. The default value is
false
.If wrap is
true
, stepping pastto
changes the value tofrom
and vice versa.