我在qt5中使用Dial。无法使用DialStyle QML类型。有什么例子吗?
我试图设置
import QtQuick.Extras 1.4
import QtQuick.Controls.Styles 1.4
Dial {
id: idDial
width: 100; height: 100
anchors.centerIn: parent
style: DialStyle {
background: Background {
width: 100; height: 100
}
handle: Rectangle {
width: 50; height: 50
color: "yellow"
}
handleInset: 50
}
}
我是否应该为样式组件启用动画?