为什么从Windows中的标准主题加载图标不起作用?

时间:2019-06-11 06:21:10

标签: qt qml

我开始学习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
            }
        }
    }
// ...

0 个答案:

没有答案