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. [solved] QML Submenu
Forum Update on Monday, May 27th 2025

[solved] QML Submenu

Scheduled Pinned Locked Moved QML and Qt Quick
qmlmenusubmenue
3 Posts 2 Posters 3.2k Views
  • 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.
  • H Offline
    H Offline
    HappyCoder
    wrote on 13 May 2015, 13:25 last edited by HappyCoder
    #1

    Hi,
    there is a widget example for menus see here and
    in the first picture you can see a submenu from Edit -> Format.

    How can i create a submenu using QML?

    Thx

    1 Reply Last reply
    0
    • ? Offline
      ? Offline
      A Former User
      wrote on 13 May 2015, 13:54 last edited by
      #2

      Hi,
      yes, it's simple. For example:

      menuBar: MenuBar {
              Menu {
                  title: "1"
                  Menu {
                      title: "1.1"
                      MenuItem {
                          text: "1.1.1"
                      }
                      MenuItem {
                          text: "1.1.2"
                      }
                  }
              }
              Menu {
                  title: "2"
                  Menu {
                      title: "2.1"
                      MenuItem {
                          text: "2.1.1"
                      }
                      MenuItem {
                          text: "2.1.2"
                      }
                  }
              }
          }
      
      1 Reply Last reply
      0
      • H Offline
        H Offline
        HappyCoder
        wrote on 18 May 2015, 06:22 last edited by
        #3

        It's working fine, i was nesting the MenuItem entrys and that didn't work
        Stefan

        1 Reply Last reply
        0

        1/3

        13 May 2015, 13:25

        • Login

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