Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. QML and Qt Quick
  4. Menus in Qt quick
Qt 6.11 is out! See what's new in the release blog

Menus in Qt quick

Scheduled Pinned Locked Moved Solved QML and Qt Quick
3 Posts 2 Posters 394 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • K Offline
    K Offline
    Kettle
    wrote on last edited by
    #1

    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 {
    
                ...
    
            }
    
    1 Reply Last reply
    0
    • fcarneyF Offline
      fcarneyF Offline
      fcarney
      wrote on last edited by
      #2
        MenuBar {
              anchors.bottom: parent.bottom
      
              Menu {
                  title: "Find/Replace"
                  Action { text: "Find Next" }
                  Action { text: "Find Previous" }
                  Action { text: "Replace" }
              }
          }
      

      C++ is a perfectly valid school of magic.

      K 1 Reply Last reply
      0
      • fcarneyF fcarney
          MenuBar {
                anchors.bottom: parent.bottom
        
                Menu {
                    title: "Find/Replace"
                    Action { text: "Find Next" }
                    Action { text: "Find Previous" }
                    Action { text: "Replace" }
                }
            }
        
        K Offline
        K Offline
        Kettle
        wrote on last edited by
        #3

        @fcarney Thanks, this did it!

        1 Reply Last reply
        0

        • Login

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • Users
        • Groups
        • Search
        • Get Qt Extensions
        • Unsolved