QT Creator 中调整复选框大小[重复]

问题描述 投票:0回答:1

我在 QT Creator 中创建了一个名为“override”的 QCheckbox。

我想更改实际复选框的大小,而不是与其关联的文本的字体。

有办法做到这一点吗?

c++ qt qt-creator
1个回答
1
投票

我用过这个:

eyeChk = new QCheckBox("Eyes:");
_eyeChk->setStyleSheet("QCheckBox::indicator { width:150px; height: 150px;} QCheckBox::indicator::checked {image: url(/home/jvdglind/Downloads/280px-PNG_transparency_demonstration_2.png);}");

刚刚发现听起来不错的默认复选框图像。

© www.soinside.com 2019 - 2024. All rights reserved.