zoukankan      html  css  js  c++  java
  • Qt Quick中ApplicationWindow与Window

    ApplicationWindow需要导入QtQuick.Controls 

    Window需要导入QtQuick.Window 。 

    默认不可见,需要设置visible:true才可见。 

    主要区别就是ApplicationWindow提供了简单的方式创建程序窗口,因为其有属性menuBar、toolBar、Tabview等属性,可以方便快速创建一个丰富的窗口。

      ApplicationWindow {

          id: window

          visible: true

          menuBar: MenuBar {

              Menu { MenuItem {...} }

              Menu { MenuItem {...} }

          }

          toolBar: ToolBar {

              RowLayout {

                  anchors.fill: parent

                  ToolButton {...}

              }

          }

          TabView {

              id: myContent

              anchors.fill: parent

              ...

          }

      }

    https://i.cnblogs.com/posts/edit

  • 相关阅读:
    MQTT
    群晖搭建webssh
    OSI 协议
    centos7 yum安装ffmpeg,以及ffmpeg的简单用法
    centos7 RTMP直播服务器搭建
    elasticsearch
    H5的storage
    bootstrap 列表組
    eclipse的debug模式下启动不了tomcat
    bootstrap collapse
  • 原文地址:https://www.cnblogs.com/lvdongjie/p/13518746.html
Copyright © 2011-2022 走看看