赞
踩
QLineEdit
可以使用函数setEchoMode(EchoMode)
来实现密码输入框。EchoMode
是一个枚举值:
Constant | Description |
---|---|
QLineEdit::Normal | 正常显示模式 |
QLineEdit::NoEcho | 不显示任何字符 |
QLineEdit::Password | 根据平台使用模糊字符代替实际输入的字符,例如* |
代码如下:
Dialog::Dialog ( QWidget *parent ) : QDialog ( parent ), ui ( new Ui::Dialog ) {
ui->setupUi ( this );
ui->lineEdit_2->setEchoMode ( QLineEdit::Password );
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。