QML之菜单栏工具栏

 1 MenuBar{                    //菜单栏
 2     Menu{                    //菜单
 3         MenuItem{            //菜单项
 4         }
 5 
 6         MenuItem{
 7         }
 8 
 9         MenuItem{
10         }
11     }
12 }
13                 

ToolBar {                        //工具栏
    RowLayout{                //横向
        ToolButton{}            //工具按钮
        ToolButton{}
        ToolButton{}
        ToolButton{}
    }
}    

猜你喜欢

转载自www.cnblogs.com/y-h2018611/p/9505832.html
今日推荐