Qt QInputDialog文本输入对话框示例

1、代码如下

//引入头文件:
#include 

//...

//...

//...

//具体用法:
bool isOK;//QInputDialog 是否成功得到输入  
QString text = QInputDialog::getText(NULL,  
                                     "参数设定",  
                                     "输入单次召测统计时间,eg.\"0:0:10 \" ",  
                                     QLineEdit::Normal,  
                                     "0:0:10",  
                                     &isOK);  

2、效果

Qt QInputDialog文本输入对话框示例_第1张图片

 

你可能感兴趣的:(QtCreator)