首页 > 代码库 > Qt msgBox 快捷版

Qt msgBox 快捷版

int iRet = msgBox(pos, tr("警告")
                      , tr("确定要删除当前选中的行吗?")
                      , tr("确定"), tr("取消"), 1, 1);
    if (1 == iRet) return;  // 0:确定 1:取消

Qt msgBox 快捷版