上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 17 下一页
摘要: 遇到过这种情况:对某个文件名字进行修改。 下面是把文件名前加done,所以只传入了要修改的文件名。 1 bool RenameFile(QString oldName) 2 { 3 QFileInfo file(oldName); 4 if(!file.exists()){ 5 QString st 阅读全文
posted @ 2022-06-29 13:38 阳光下的小土豆 阅读(1554) 评论(0) 推荐(0) 编辑
摘要: 一段代码: void InitSpeedSystemTable(int row) { ui->tableSpeedSystem->clear(); ui->tableSpeedSystem->horizontalHeader()->setVisible(true); ui->tableSpeedSy 阅读全文
posted @ 2022-03-28 14:56 阳光下的小土豆 阅读(348) 评论(0) 推荐(0) 编辑
摘要: 1、判断某条数据是否存在 bool DataBaseManager::WriteConfigure(QString configureName, QString configureVal) { QString sql = QString("select 1 from Configure where 阅读全文
posted @ 2022-03-18 14:36 阳光下的小土豆 阅读(3467) 评论(0) 推荐(0) 编辑
摘要: 读: json: { "first": { "second": { "third1":"23423", "third2":"2323" }, "four":"234234" }, "five":"34234" } 代码: const QString Results = "first"; const 阅读全文
posted @ 2022-03-14 19:17 阳光下的小土豆 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 当工具栏的按钮被按下,图标保持不变,需要怎么做? 下面是qss,另外需要设置按钮 checkable 为true QPushButton#btnZHGL { border-radius:10px; font-size:28px; font-family:Microsoft YaHei; font-w 阅读全文
posted @ 2022-03-14 17:46 阳光下的小土豆 阅读(927) 评论(0) 推荐(0) 编辑
摘要: QImage *img = new QImage; img->load(pic); QPixmap pixmap = QPixmap::fromImage(*img); QPixmap fitpixmap = pixmap.scaled(50, 50, Qt::IgnoreAspectRatio, 阅读全文
posted @ 2022-03-14 17:41 阳光下的小土豆 阅读(1937) 评论(0) 推荐(0) 编辑
摘要: 1、QListWidget 插入Qwidget QListWidgetItem *widgetItem = new QListWidgetItem(ui->listWidget); widgetItem->setSizeHint(QSize(94, 48)); ui->listWidget->add 阅读全文
posted @ 2022-03-09 13:49 阳光下的小土豆 阅读(762) 评论(0) 推荐(0) 编辑
摘要: 1 头文件 2 QTimer m_timer; 3 void SlotTimer(); 4 5 源文件 6 connect(&m_timer, SIGNAL(timeout()), this, SLOT(SlotTimer())); 7 void VideoControl::SlotTimer() 阅读全文
posted @ 2022-01-11 14:34 阳光下的小土豆 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.zhaokeli.com/article/8309.html 1 map<string,int>::iterator key = cmap.find("Anna"); 2 if(key!=cmap.end()) 3 { 4 cout<<key->second<<endl 阅读全文
posted @ 2022-01-07 11:09 阳光下的小土豆 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 1. 判断文件夹是不是存在 1 QString fullPath;//文件夹全路径 2 /*方法1*/ 3 bool isDirExist(QString fullPath) 4 { 5 QDir dir(fullPath); 6 if(dir.exists()) 7 { 8 return true 阅读全文
posted @ 2021-12-20 11:21 阳光下的小土豆 阅读(2418) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 17 下一页