热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

初学qt——提示窗体

带选择的窗体QMessageBox::StandardButtonrbQMessageBox::critical(NULL,QString::fromLocal8Bit(提示)

带选择的窗体

QMessageBox::StandardButton rb = QMessageBox::critical(NULL, QString::fromLocal8Bit("提示"), QString::fromLocal8Bit("确定删除吗?"), QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes);
//下面是判断选择后的操作
if(rb == QMessageBox::Yes)
{
QPushButton *btn = (QPushButton *) sender();
QString row= btn->property("row").toString();
QString id = btn->property("ids").toString();
Model->removeRow(0);
QString sql="delete from syzbInfo where id=:id";
QSqlQuery query;
query.prepare(sql);
query.bindValue(":id",id);
if(query.exec()){
ui.tableView_syzb->setRowHidden(row.toInt(),true);
getSyzbData(Data::id_cards);
}
}

只有确定按钮的消息窗体

QMessageBox::about(NULL, QString::fromLocal8Bit("提示"), QString::fromLocal8Bit("添加失败"));

推荐阅读
author-avatar
丁可丁可_136
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有