2013-01-01 43 views
1

我開始學習QML。預期房產類型大小

我發現here在QML中有'size'類型。但是,當我試圖使用它:

property size buttonSize: "75x30" 

我得到的錯誤:

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

爲什麼?

回答

3

size不作爲屬性類型直接支持。

支持的類型列於here
您還可以使用variant來存儲尺寸:

property variant buttonSize: Qt.size(75,30)