无法使用DialStyle QML类型

时间:2018-04-06 11:06:48

标签: qt qml

我在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

            }
        }

我是否应该为样式组件启用动画?

0 个答案:

没有答案