我开始学习QML并遇到一个问题:无法使用“ icon.name”属性加载标准图标。我尝试使用此页面上的示例:https://doc.qt.io/qt-5/qtquickcontrols2-icons.html,请注意它不起作用。而且我怀疑这可能无法在Windows中使用,是真的吗?
// ...
Action {
id: openAction
text: qsTr("&Open...")
icon.name: "document-open"
onTriggered: window.openFileDialog();
shortcut: StandardKey.Open
}
// ...
header: ToolBar {
Flow {
anchors.fill: parent
ToolButton {
id: toolBarOpen
action: openAction
}
}
}
// ...