警告:此解决方案依赖于修改内部对象,不能保证跨不同的 Qt 版本或平台工作
如果您绝对只想修改未公开对象的属性,您仍然可以使用(或/ )的children
属性访问它。Item
resources
data
一个方便调用的函数Component.omCompleted
是转储 a 的层次结构的函数Item
,这里是一个示例实现:
function dumpHierarchy(item, level) {
level = level | 0;
for (var index = 0; index < item.children.length; ++index) {
var child = item.children[index];
print(Array(level*2 + 1).join(" ")+ index +": "+child);
dumpHierarchy(child, level+1);
}
}
以及它在 Android 和 Qt 5.5 上为 a 输出的内容Button
:
0: QQuickLoader(0xab87c768)
0: QQuickLoader_QML_44(0xab7a84f0)
1: QQuickItem_QML_53(0xab8c8d60)
0: DrawableLoader_QMLTYPE_51(0xab8bb088)
0: StateDrawable_QMLTYPE_65(0xab949420)
0: DrawableLoader_QMLTYPE_51(0xab936ea0)
0: NinePatchDrawable_QMLTYPE_67(0xab955c90)
0: QQuickAndroid9Patch_QML_68(0xab913608)
1: QQuickLoader_QML_66(0xab924838)
1: QQuickRowLayout(0xab8b03a0)
0: QQuickImage(0xab8b0960)
1: LabelStyle_QMLTYPE_50(0xab8c1758)
1: QQuickMouseArea_QML_46(0xab887028)
在这里,我们可以看到LabelStyle
我们感兴趣的层级位置。如果你想快速而肮脏地做到这一点,你可以在你的Button
元素中添加它:
Component.onCompleted: children[0].children[1].children[1].children[1].font.pixelSize = 50
但这并不是真正可维护的,更可接受的解决方案是遍历我们的子层次结构Button
并找到要修改的字体。
我findFont
在一个工作示例 Application 中放置了一个函数:
import QtQuick 2.5
import QtQuick.Controls 1.4
ApplicationWindow {
id: app
visible: true
width: 640
height: 480
function findFont(object) {
if (object.font)
return object.font;
var font = null;
for (var index = 0; index < object.children.length && !font; ++index)
font = findFont(object.children[index]);
return font;
}
Column {
anchors.centerIn: parent
Button {
anchors.horizontalCenter: parent.horizontalCenter
text: "Button 1"
width: 300
height: 100
}
Button {
anchors.horizontalCenter: parent.horizontalCenter
text: "Button 2"
width: 300
height: 100
Component.onCompleted: {
findFont(this).pixelSize = 50;
// On Android and Qt 5.5, this is equivalent :
//children[0].children[1].children[1].children[1].font.pixelSize = 50;
}
}
}
}