Qt应用开发(Quick篇)——布局类与布局模块

一、前言

       实际 应用中,布局是常用的功能,布局最直观的就是提供空间使用率,改善空间的流动和模块之间的重叠,让界面更加的美观

二、布局类Layout

2.1 介绍

         将Layout类型的对象附加到布局的子元素上,提供有关该项的特定于布局的信息,附加对象的属性也会影响布局安排项目的方式。

        提供最小宽度minimumWidth最大宽度maximumWidth首选宽度preferredWidth等影响元素的宽度,填充宽度fillWidth填充高度fillHeight属性如果它们为false,则项目的大小将固定为首选大小,否则,当布局调整大小时,它将在最小最大之间增长或缩小。

 ColumnLayout{spacing: 2Rectangle {Layout.alignment: Qt.AlignCentercolor: "red"Layout.preferredWidth: 40Layout.preferredHeight: 40}Rectangle {Layout.alignment: Qt.AlignRightcolor: "green"Layout.preferredWidth: 40Layout.preferredHeight: 70}Rectangle {Layout.alignment: Qt.AlignBottomLayout.fillHeight: truecolor: "blue"Layout.preferredWidth: 70Layout.preferredHeight: 40}}

        注意:不要绑定到布局中项目的x、y、width或heigh属性,因为这将与布局的目标相冲突,并且还可能导致绑定循环。布局引擎使用宽度和高度属性来存储从最小/首选/最大附加属性计算出来的项目的当前大小,并且可以在每次布局项目时重写。

2.2 依附属性

Layout.alignment : Qt.Alignment

        此属性表示元素在其占用的单元格内的对齐方式,默认为左对齐+纵向居中,也就是Qt.AlignVCenter | Qt.AlignLeft,如果只指定了水平标志,默认的垂直标志将是Qt.AlignVCenter,如果只指定了垂直标志,默认的水平标志将是Qt.AlignLeft。

        有效的对齐方式有:

  • Qt::AlignLeft                水平左对齐
  • Qt::AlignHCenter         水平居中
  • Qt::AlignRight              水平右对齐
  • Qt::AlignTop                 垂直顶部对齐
  • Qt::AlignVCenter          垂直居中
  • Qt::AlignBottom            垂直底部对齐
  • Qt::AlignBaseline          垂直基线对齐

 

Layout.margins : real

Layout.bottomMargin : real

Layout.topMargin : real

Layout.rightMargin : real

Layout.leftMargin : real

        设置布局内元素的外边距,默认为0。如果设置了边距,那么元素的有效单元格大小将随着边距的增加而增加。

Layout.maximumHeight : real

Layout.maximumWidth : real

Layout.minimumHeight : real

Layout.minimumWidth : real

Layout.preferredHeight : real

Layout.preferredWidth : real

Layout.fillHeight : bool

Layout.fillWidth : bool

        设置布局内元素的宽高和是否填充策略。

Layout.column : int

Layout.row : int

        指定元素在网格布局GridLayout中的位置。

Layout.columnSpan : int

Layout.rowSpan : int

        指定元素在网格布局GridLayout中的行和列跨度,默认值为1,也就是占据一行一列。     

        在下面的例子中,第一个元素的行跨度为2,所以它占据了两行,在实际的应用场景中,该属性在网格布局中是非常好用的。

import QtQuick 2.15
import QtQuick.Window 2.15
import QtQuick.VirtualKeyboard 2.15
import QtQuick.Layouts 1.15Window {id: windowwidth:800height: 600visible: truetitle: qsTr("Hello World")GridLayout{anchors.centerIn: parentcolumns: 3Rectangle {Layout.alignment: Qt.AlignBottomLayout.fillHeight: trueLayout.rowSpan: 2color: "blue"Layout.preferredWidth: 70Layout.preferredHeight: 40}Rectangle {Layout.alignment: Qt.AlignBottomLayout.fillHeight: truecolor: "blue"Layout.preferredWidth: 70Layout.preferredHeight: 40}Rectangle {Layout.alignment: Qt.AlignBottomLayout.fillHeight: truecolor: "blue"Layout.preferredWidth: 70Layout.preferredHeight: 40}Rectangle {Layout.alignment: Qt.AlignBottomLayout.fillHeight: truecolor: "blue"Layout.preferredWidth: 70Layout.preferredHeight: 40}Rectangle {Layout.alignment: Qt.AlignBottomLayout.fillHeight: truecolor: "blue"Layout.preferredWidth: 70Layout.preferredHeight: 40}}}

三、行布局模块RowLayout、列布局模块ColumnLayout

        这两种模块的作用比较单一,只支持一行/一列的元素的布局,通过Layout类的依附属性完成界面的设计。

3.1 属性

layoutDirection : enumeration

        此属性保留列布局的布局方向是从左到右还是从右到左进行布局,默认为从左到右,在开头实例布局方向,左侧为从右到左效果,右侧为从左到右效果。

spacing : real

        该属性每个单元格之间的间距,默认为5。

四、网格布局模块GridLayout

        网格布局是单向布局的高级版本,代码参考第二个实例。

4.1属性

        layoutDirection属性与单向布局相同,其他属性还有:

columnSpacing : real

rowSpacing : real

        每个单元格之间的行列间距,默认为5。

flow : enumeration

        该属性表示没有显式单元格位置集的项的流向。它与columns或rows属性一起使用,它们分别指定何时将流重置为下一行或下一列,默认为从左到右。

        下面的实例中,通过五个不同颜色的

GridLayout{                             anchors.centerIn: parent            columns:2                           // rows: 3                           // flow:GridLayout.TopToBottom       Rectangle {                         Layout.alignment: Qt.AlignBottomLayout.fillHeight: true         Layout.rowSpan: 2               color: "blue"                   Layout.preferredWidth: 70       Layout.preferredHeight: 40      }                                   Rectangle {                         Layout.alignment: Qt.AlignBottomLayout.fillHeight: true         color: "red"                    Layout.preferredWidth: 70       Layout.preferredHeight: 40      }                                   Rectangle {                         Layout.alignment: Qt.AlignBottomLayout.fillHeight: true         color: "green"                  Layout.preferredWidth: 70       Layout.preferredHeight: 40      }                                   Rectangle {                         Layout.alignment: Qt.AlignBottomLayout.fillHeight: true         color: "grey"                   Layout.preferredWidth: 70       Layout.preferredHeight: 40      }                                   Rectangle {                         Layout.alignment: Qt.AlignBottomLayout.fillHeight: true         color: "black"                  Layout.preferredWidth: 70       Layout.preferredHeight: 40      }                                   
}                                       

GridLayout{                             anchors.centerIn: parent            // columns:2                         rows: 3                             flow:GridLayout.TopToBottom         Rectangle {                         Layout.alignment: Qt.AlignBottomLayout.fillHeight: true         Layout.rowSpan: 2               color: "blue"                   Layout.preferredWidth: 70       Layout.preferredHeight: 40      }                                   Rectangle {                         Layout.alignment: Qt.AlignBottomLayout.fillHeight: true         color: "red"                    Layout.preferredWidth: 70       Layout.preferredHeight: 40      }                                   Rectangle {                         Layout.alignment: Qt.AlignBottomLayout.fillHeight: true         color: "green"                  Layout.preferredWidth: 70       Layout.preferredHeight: 40      }                                   Rectangle {                         Layout.alignment: Qt.AlignBottomLayout.fillHeight: true         color: "grey"                   Layout.preferredWidth: 70       Layout.preferredHeight: 40      }                                   Rectangle {                         Layout.alignment: Qt.AlignBottomLayout.fillHeight: true         color: "black"                  Layout.preferredWidth: 70       Layout.preferredHeight: 40      }                                   
}                                       

columns : int

rows : int

         限制创建的行和列数,要注意元素超出范围,否则会崩溃,默认不限制。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/198515.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

在AWS Lambda上部署标准FFmpeg工具——自定义层的方案

大纲 1 确定Lambda运行时环境1.1 Lambda系统、镜像、内核版本1.2 运行时1.2.1 Python1.2.2 Java 2 打包FFmpeg3 创建Lambda的Layer4 测试4.1 创建Lambda函数4.2 附加FFmpeg层4.3 添加测试代码4.4 运行测试 参考文献 FFmpeg被广泛应用于音/视频流处理领域。对于简单的需求&#…

阿里云Arthas使用——在日志没有输出异常情况下,如何进行线上bug定位 stack命令 和 trace命令

前言 Arthas 是一款线上监控诊断产品,通过全局视角实时查看应用 load、内存、gc、线程的状态信息,并能在不修改应用代码的情况下,对业务问题进行诊断,包括查看方法调用的出入参、异常,监测方法执行耗时,类…

FreeRTOS-Plus-CLI移植

FreeRTOS-Plus-CLI移植 Fang XS.1452512966qq.com如果有错误,希望被指出,学习技术的路难免会磕磕绊绊量的积累引起质的变化 介绍 FreeRTOS-Plus-CLI是FreeRTOS的组件之一。FreeRTOS-Plus-CLI提供了一种简单、小巧、可扩展且RAM高效的启用方法方便Free…

JS的监听事件

在JavaScript中,你可以使用监听器来捕获和处理不同类型的事件。通过添加事件监听器,你可以指定当特定事件发生时要执行的函数。 以下是几种常见的监听事件的方法: 1. addEventListener():用于在目标元素上添加事件监听器。它接受…

解决 IIS HTTP 403 错误问题

最近上传附件 IIS 总是返回 HTTP 403 错误,在踩了很多配置的坑之后,终于把问题解决了,于是特意写了本篇文章。 虽然网络上的文章不少,大都写的没错,但是他们没有很清晰的把问题描述清楚,导致一些新手在看这些文章跟着处理问题的时候难免会踩坑,于是我就以我踩坑的经验写…

分享67个节日PPT,总有一款适合您

分享67个节日PPT,总有一款适合您 67个节日PPT下载链接:https://pan.baidu.com/s/1oU-UUCV_69e8Gp5Y6zrzVA?pwd6666 提取码:6666 Python采集代码下载链接:采集代码.zip - 蓝奏云 学习知识费力气,收集整理更不易…

使用Python发送HTTP请求的最佳实践:让你的代码锐利如刀!

在当今的数字化时代,使用Python发送HTTP请求已经成为了许多开发人员的日常任务。无论是进行API交互、网页爬取,还是构建网络服务,掌握Python的HTTP请求技巧都至关重要。但是,要想在竞争激烈的编程领域中脱颖而出,你需要…

python模块 — json

1、什么是JSON? JSON(JavaScript Object Notation)是一种轻量级的数据交换格式。JSON由键值对构成,键和值之间使用冒号分隔,键值对之间使用逗号分隔,并且整个结构包含在花括号中。 不同编程语言都提供了处…

uniapp-hubildx配置

1.配置浏览器 (1)运行》运行到浏览器配置》配置web服务器 (2)选择浏览器安装路径 (3)浏览器安装路径: (3.1) 右键点击图标》属性 (3.2)选择目标&…

FutureTask

1. 作用 异步操作获取执行结果取消任务执行&#xff0c;判断是否取消执行判断任务执行是否完毕 2. demo public static void main(String[] args) throws Exception {Callable<String> callable () -> search();FutureTask<String> futureTasknew FutureTask&…

OpenGL ES eglCreatePbufferSurface() 和 eglCreateWindowSurface() 的对比和使用

一、介绍 相同点&#xff1a; eglCreatePbufferSurface 和 eglCreateWindowSurface 都是 OpenGL ES 中用于创建不同类型的EGL表面的函数&#xff0c;以便在OpenGL ES中进行渲染。 不同点&#xff1a; 选择使用哪种表面类型取决于你的需求。如果你只是需要在内存中进行离屏渲…

Lombok详解

目录 前言:注解速查1.Lombok概念2.安装Lombok3. 使用Lombok3.1 😊@Data3.2 @Getter@Setter3.3 @NonNull3.4 @Synchronized3.5 @ToString:自动生成toString()方法3.6 @Cleanup3.7 @EqualsAndHashCode前言:注解速查 @NonNull : 用在成员方法或者构造方法的参数前面,会自动产…

chrom谷歌浏览器删除表单填写记录

鼠标光标移动到删除的信息 shiftdel就可以删除了

基于Python的图书管理系统的设计与实现

点我完整下载&#xff1a;基于Python的图书管理系统的设计与实现.docx 基于Python的图书管理系统的设计与实现 Design and Implementation of a Book Management System based on Python 目录 目录 2 摘要 3 关键词 3 第一章 引言 4 1.1 研究背景 4 1.2 研究目的 5 1.3 研究意义…

Redis 集群搭建 哨兵模式搭建

文章目录 Redis version 6.0.5 集群搭建下载文件环境安装解压编译配置文件启动关闭密码设置 Redis version 6.0.5 集群搭建 下载文件 下载 命令 url 可找官网 复制 wget http://download.redis.io/releases/redis-6.0.5.tar.gz环境安装 yum install gcc-c yum install cpp …

【矩阵】240.搜索二维矩阵II

题目 跟剑指中题目相同。 class Solution {public boolean searchMatrix(int[][] matrix, int target) {int m matrix.length, n matrix[0].length;int i m - 1, j 0;while (i > 0 && j < n) {if (matrix[i][j] target) {return true;} else if (matrix[i]…

Java多线程技术二:线程间通信——ThreadLocal的使用

1 概述 变量值的共享可以使用public static 的声明方式&#xff0c;所有的线程都是用同一个public static变量&#xff0c;那如果想实现每一个线程都有自己的变量该如何解决呢&#xff1f;JDK提供的ThreadLocal就派上用场了。 ThreadLocal类主要的作用就是将数据放入当前线程对…

FreeRTOS下的“Hello World”

什么是实时操作系统&#xff08;RTOS&#xff09; 实时操作系统&#xff08;RTOS&#xff09;是一种专为实时应用程序设计的操作系统。实时应用程序需要在特定时间内做出预测的响应&#xff0c;因此RTOS专注于提供对时间约束的强调&#xff0c;以确保系统能够满足实时性能要求…

web前端开发HTML/css用户登录界面

代码&#xff1a; <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns"http://www.w3.org/1999/xhtml"> <head> <meta http-equi…

react学习--Redux的使用

Redux 的核心思想是通过一个单一的状态树来管理应用的状态&#xff0c;状态的修改通过纯函数&#xff08;reducers&#xff09;来进行&#xff0c;从而使状态变化可追踪和可预测。 1、安装 Redux&#xff1a; 在项目中安装 Redux 库和 React-Redux&#xff08;用于 React 绑定…