麦田

不积跬步无以至千里.

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2025年9月1日

摘要: Qt 快捷键: alt + enter 快速添加头文件 阅读全文
posted @ 2025-09-01 15:04 一些记录 阅读(27) 评论(0) 推荐(0)

摘要: #include <QApplication> #include <QLabel> int main(int argc,char *argv[]) { QApplication a(argc,argv); QLabel *l = new QLabel("<b>hello</b>word"); l-> 阅读全文
posted @ 2025-09-01 15:01 一些记录 阅读(5) 评论(0) 推荐(0)

摘要: 这个错误主要是 include了一个没有使用过的头文件 只需要在代码里面 使用一下你include的类 就会消除 阅读全文
posted @ 2025-09-01 10:54 一些记录 阅读(78) 评论(0) 推荐(0)

摘要: MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) , ui(new Ui::MainWindow){ ui->setupUi(this); setCentralWidget(ui->textEdit); 阅读全文
posted @ 2025-09-01 10:49 一些记录 阅读(12) 评论(0) 推荐(0)