国外有趣的网站phython 做的网站
QT LineEdit显示模式
QLineEdit 显示模式:
   Normal 普通模式
   NoEcho 不回写,即输入内容是有的,但是显示不出来,就是不在 QLineEdit 输入框中显示,但是触发例如 textChanged 信号会将所输入的文字写出来
   Password 显示密码
   PasswordEchoOnEdit 编辑的时候是密码原文显示,平常显示密码
 QLineEdit 设置显示模式:
   setEchoMode(QLineEdit::Normal) QLineEdit 设置显示模式,该函数对应属性 echoMode,默认 Normal
 举例:
  ui.lineEdit_EidtChanged->setEchoMode(QLineEdit::NoEcho);
