IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 开发工具 -> Qt 使用布局管理器,控件大小未能自适应变化 -> 正文阅读

[开发工具]Qt 使用布局管理器,控件大小未能自适应变化

问题:

????????使用布局管理器管理子部件,使用了QVHlayout管理器,发现控件大小固定,即使通过拖动窗口也不能改变控件的大小,布局管理器不是自动控制部件的大小吗?为什么没有生效?

如图所示:


解决办法:

对子部件添加延申策略
setSizePolicy(QSizePolicy::Expanding,QSizePolicy::Expanding);

分析过程:

1.控件外观由 margin ,border,padding,content构成,可能是margin被拉伸了。但官方文档介绍默认?margin ,border,padding为0;即三者重合。
通过设置border-with,colo(上图红色部分)也验证了该猜想。

2.布局管理器的锅,为什么设置了伸展因子也不能拉升控件的大小?

官方文档对addWidget介绍:
void QBoxLayout::addWidget(QWidget *widget, int stretch = 0, Qt::Alignment alignment = Qt::Alignment())
????????Adds widget to the end of this box layout, with a stretch factor of stretch and alignment alignment.
????????The stretch factor applies only in the direction of the QBoxLayout, and is relative to the other boxes and widgets in this QBoxLayout. Widgets and boxes with higher stretch factors grow more.
If the stretch factor is 0 and nothing else in the QBoxLayout has a stretch factor greater than zero, the space is distributed according to the QWidget:sizePolicy() of each widget that's involved.

????????The alignment is specified by alignment. The default alignment is 0, which means that the widget fills the entire cell.

?解释说:

? ? ? ? 如果stretch设置为0且在布局管理器中没有比0大的伸展因子,那么布局管理器就会使用子部件提供的sizePolicy()划分空间。

官方文档对QSizePolicy::Policy解释:

? ? ??

?expanding解释:

sizeHint()是一个合理的大小,但小部件可以缩小,仍然有用。小部件可以利用额外的空间,因此它应该获得尽可能多的空间(例如,水平滑块的水平方向)。

那么试试它:

效果:

?

奇怪的事:
官方文档:

void QBoxLayout::addWidget(QWidget *widget, int stretch = 0, Qt::Alignment alignment = Qt::Alignment())

解释这个函数说:
????????If the stretch factor is 0 and nothing else in the QBoxLayout has a stretch factor greater than zero, the space is distributed according to the QWidget:sizePolicy() of each widget that's involved.

????????如果 stretch伸展因子设置为0,且在QBoxlayout中没有比0大的伸展因子。那么布局管理器将根据子部件设置的sizePolicy()策略划分空间。
但是我用layout->addWidget(drag_wight,0,Qt::AlignCenter),却不能自适应变化。

效果:

?代码:

 DragWidget * drag_wight = new DragWidget(this);
    DragWidget * drag_wight1 = new DragWidget(this);
    DragWidget * drag_wight2 = new DragWidget(this);
    DragWidget * drag_wight3 = new DragWidget(this);
    drag_wight->setStyleSheet("border-style: outset;border-width: 2px;border-color: red;");
    drag_wight1->setStyleSheet("border-style: outset;border-width: 2px;border-color: red;");
    drag_wight2->setStyleSheet("border-style: outset;border-width: 2px;border-color: red;");
    drag_wight3->setStyleSheet("border-style: outset;border-width: 2px;border-color: red;");

    drag_wight->setSizePolicy(QSizePolicy::Expanding,QSizePolicy::Expanding);
    drag_wight1->setSizePolicy(QSizePolicy::Expanding,QSizePolicy::Expanding);
    drag_wight2->setSizePolicy(QSizePolicy::Expanding,QSizePolicy::Expanding);
    drag_wight3->setSizePolicy(QSizePolicy::Expanding,QSizePolicy::Expanding);

    QBoxLayout *layout = new QVBoxLayout;

    //layout->setStretch()
    //drag_wight3->
    layout->addWidget(drag_wight,Qt::AlignCenter);
    layout->addWidget(drag_wight1,Qt::AlignCenter);
    layout->addWidget(drag_wight2,Qt::AlignCenter);
    layout->addWidget(drag_wight3,Qt::AlignCenter);
    layout->setMargin(5);
    layout->setSpacing(5);
    setLayout(layout);

  开发工具 最新文章
Postman接口测试之Mock快速入门
ASCII码空格替换查表_最全ASCII码对照表0-2
如何使用 ssh 建立 socks 代理
Typora配合PicGo阿里云图床配置
SoapUI、Jmeter、Postman三种接口测试工具的
github用相对路径显示图片_GitHub 中 readm
Windows编译g2o及其g2o viewer
解决jupyter notebook无法连接/ jupyter连接
Git恢复到之前版本
VScode常用快捷键
上一篇文章      下一篇文章      查看所有文章
加:2022-03-03 16:35:43  更:2022-03-03 16:36:41 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 6:31:54-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码