MenuBar QML QtQuick.Controls 1.0

时间:2013-12-23 09:05:58

标签: qt qml qt-quick

import QtQuick 2.0
import QtQuick.Controls 1.0

Item {
  MenuBar {
    id: ee
    Menu {
        title: "File"
        MenuItem { text: "Open..." }
        MenuItem { text: "Close" }
    }

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

我希望看到一个菜单栏作为输出,但我一无所获。请指出我错过了什么。

1 个答案:

答案 0 :(得分:1)

您需要ApplicationWindow。见那里的例子