linux qt设置字体
时间: 2023-08-29 16:07:16 浏览: 285
QT4 设置字体
在 Linux 平台中,可以使用 Qt 库提供的 QFont 类来设置字体。以下是一个简单的示例代码:
```cpp
#include <QApplication>
#include <QLabel>
#include <QFont>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QLabel label("Hello World!");
QFont font("Arial", 20, QFont::Bold);
label.setFont(font);
label.show();
return app.exec();
}
```
在上面的代码中,我们通过 QFont 类来创建一个 Arial 字体,大小为 20,加粗,并将其设置为 QLabel 的字体。你可以根据自己的需求来修改字体的名称、大小和样式。
阅读全文