Qt中怎么获得文本框内的文字

2024-11-30 14:43:14
推荐回答(2个)
回答1:

C/C++ code
?
1
QString text=ui->QLineEdit->text();

回答2:

QString text = lineEdit->text();