Menus in Qt quick
-
Hello,
I have a question about menus in Qt quick applications. I have an application that has a native menu in it, which opens at the top of the application window. Is there a way to change the location of the menu at the bottom of the application window?
Thanks in advance
Menu { id: menu width: parent.width Action { ... } Action { ... }
-
MenuBar { anchors.bottom: parent.bottom Menu { title: "Find/Replace" Action { text: "Find Next" } Action { text: "Find Previous" } Action { text: "Replace" } } }