0

我是 Qt 和 Qt/QML 的新手,我正在尝试设置一个菜单栏,但它根本没有显示。

我复制了粘贴的代码,但仍然没有(来自 Qt doc)。

import QtQuick 2.0
import QtQuick.Controls 1.0

ApplicationWindow {
    visible: true;
    width: 1000;
    height: 700;
    title: "App";
    MenuBar {
        Menu {
            title: "File"
            MenuItem { text: "Open..." }
            MenuItem { text: "Close" }
        }

        Menu {
            title: "Edit"
            MenuItem { text: "Cut" }
            MenuItem { text: "Copy" }
            MenuItem { text: "Paste" }
        }
    }
}
4

1 回答 1

7

通过使用解决了它

menuBar: MenuBar{//Menubar content}

代替

MenuBar{//Menubar content}

于 2013-10-07T10:53:43.853 回答