c++ Qt 设置 QGroupBox 标题字体大小
时间: 2023-10-25 15:07:55 浏览: 509
你可以使用 QGroupBox 的 setTitle 方法设置标题,然后使用 QFont 类设置字体大小。以下是示例代码:
```c++
QGroupBox *groupBox = new QGroupBox("Title");
QFont font("Arial", 12, QFont::Bold);
groupBox->setTitleFont(font);
```
在这个示例中,标题的字体设置为 Arial、大小为 12、加粗。你可以根据需要更改字体的属性。
相关问题
qt groupbOX
### 使用 QGroupBox 的基本介绍
Q.GroupBox 是 Qt 中用于创建分组框的小部件,可以用来逻辑上分隔一组控件。这不仅有助于提高用户界面的可读性和可用性,还能增强应用程序的设计美感。
### 创建简单的 QGroupBox 实例
下面是一个简单实例来展示如何在 Qt 应用程序中使用 `QGroupBox`:
```cpp
#include <QApplication>
#include <QWidget>
#include <QVBoxLayout>
#include <QRadioButton>
#include <QLabel>
#include <QGroupBox>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QWidget window;
QVBoxLayout *layout = new QVBoxLayout(&window);
// Create a group box with title "Options"
QGroupBox *groupBox = new QGroupBox("Options", &window);
QVBoxLayout *vbox = new QVBoxLayout;
// Add radio buttons into the group box
QRadioButton *radio1 = new QRadioButton("&Radio button 1");
QRadioButton *radio2 = new QRadioButton("R&adio button 2");
vbox->addWidget(radio1);
vbox->addWidget(radio2);
groupBox->setLayout(vbox);
layout->addWidget(groupBox);
QLabel *label = new QLabel("This is an example of using QGroupBox.");
layout->addWidget(label);
window.setLayout(layout);
window.show();
return app.exec();
}
```
这段代码展示了怎样通过 C++ 来构建一个带有两个单选按钮的选择项列表,并将其放置在一个名为 “Options”的 `QGroupBox` 容器内[^1]。
### 设置 QGroupBox 样式表
为了使 `QGroupBox` 更具吸引力并更好地融入应用的整体设计风格,可以通过设置样式表来自定义其外观。例如改变边框颜色、背景色以及字体大小等属性:
```css
/* Style sheet for QGroupBox */
QGroupBox {
border: 1px solid gray;
margin-top: 1ex; /* leave space at the top for the title */
}
QGroupBox:title {
subcontrol-origin: margin;
subcontrol-position: top center; /* position at the top center */
padding: 0 3px;
background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1,
stop:0 #E0E0E0, stop:1 white);
}
```
此 CSS 片段说明了如何调整 `QGroupBox` 及其标题栏的颜色和位置。
阅读全文