Pregunta

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" }
    }
  }
}

I hoped to see a menubar as an output, but I got nothing. Please point out what did I miss.

¿Fue útil?

Solución

You need ApplicationWindow. See example there

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top