1

我开始学习 QML。

我在这里发现QML 中有“大小”类型。但是当我尝试使用它时:

property size buttonSize: "75x30"

我得到错误:

Button.qml:13:14: Expected property type 
         property size buttonSize: "75x30" 
                  ^ 

为什么?

4

1 回答 1

3

size不直接支持作为属性类型。

此处列出了支持的类型。
您还可以使用 avariant来存储大小:

property variant buttonSize: Qt.size(75,30)
于 2013-01-01T16:07:24.780 回答