Qt使用QInputDialog获取用户输入、自定义OK/Cancel按钮文字
参考官方文档,可以简单使用QInputDialog类的静态方法来弹出对话框获取用户输入,缺点是不能自定义按钮的文字,默认为OK和Cancel:
bool ok;
int i = QInputDialog::getInt(this, tr("QInputDialog::getInteger()"),
tr("Percentage:"), 25, 0, 100, 1, &ok);
if (ok)
qDebug()<<"User entered "<
【Qt使用QInputDialog获取用户输入、自定义OK/Cancel按钮文字】调用静态方法的效果图:
文章图片
自定义按钮文字的效果图
文章图片
方法是创建一个QinputDiag的对象,分别调用setOkButtonText()和setCancelButtonText()设置文字,再将对象的intValueSelected(int)信号connect到保存用户输入的槽函数即可
getChNo=new QInputDialog(this);
getChNo->setOkButtonText(QString::fromLocal8Bit("确定"));
getChNo->setCancelButtonText(QString::fromLocal8Bit("取消"));
getChNo->setInputMode(QInputDialog::IntInput);
getChNo->setIntRange(1,16);
getChNo->setLabelText("Select a channel");
connect(getChNo,SIGNAL(intValueSelected(int)),this,SLOT(getChSelected(int)));
getChNo->show();
//在需要获取用户输入的地方调用show()
推荐阅读
- 由浅入深理解AOP
- 【译】20个更有效地使用谷歌搜索的技巧
- mybatisplus如何在xml的连表查询中使用queryWrapper
- MybatisPlus|MybatisPlus LambdaQueryWrapper使用int默认值的坑及解决
- MybatisPlus使用queryWrapper如何实现复杂查询
- iOS中的Block
- Linux下面如何查看tomcat已经使用多少线程
- 使用composer自动加载类文件
- android|android studio中ndk的使用
- 使用协程爬取网页,计算网页数据大小