摘要: QFileInfo fileInfo; QString filePath, fileName, fileSuffix, fileFull; filePath = QCoreApplication::applicationDirPath(); fileFull = QFileDialog::getOp 阅读全文
posted @ 2020-12-06 16:10 每天前进一小步 阅读(1303) 评论(0) 推荐(0)
摘要: QWidget *widget = new QWidget(this); setCentralWidget(widget); //...... QVBoxLayout layout = new QVBoxLayout(widget); //...... 阅读全文
posted @ 2020-12-06 14:46 每天前进一小步 阅读(349) 评论(0) 推荐(0)
摘要: void Widget::on_actFontBold_triggered(bool checked) { QTextCharFormat fmt; fmt = ui->txtEdit->currentCharFormat(); if(checked) fmt.setFontWeight(QFont 阅读全文
posted @ 2020-12-06 14:11 每天前进一小步 阅读(2065) 评论(0) 推荐(0)