我是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" }
}
}
}
答案 0 :(得分:7)
使用
解决了这个问题 menuBar: MenuBar{//Menubar content}
而不是
MenuBar{//Menubar content}