This question already has answers here:
How to put a static text (postfix, prefix) in QLineEdit?

(2个答案)


3个月前关闭。




可以在QLineEdit的开头设置一个修复字符串吗?像这样的东西:
c++ - 如何在QLineEdit的开头设置修复字符串?-LMLPHP
在这里$是常量,用户无法删除或编辑它。

最佳答案

在对象中使用输入掩码:例如

ui->lineEdit->setInputMask("$ 000.000.000.000 ");
看起来像
c++ - 如何在QLineEdit的开头设置修复字符串?-LMLPHP

关于c++ - 如何在QLineEdit的开头设置修复字符串? ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/63593756/

10-13 05:55