Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我开始学习 QML。
我在这里发现QML 中有“大小”类型。但是当我尝试使用它时:
property size buttonSize: "75x30"
我得到错误:
Button.qml:13:14: Expected property type property size buttonSize: "75x30" ^
为什么?
size不直接支持作为属性类型。
size
此处列出了支持的类型。 您还可以使用 avariant来存储大小:
variant
property variant buttonSize: Qt.size(75,30)