Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
QT For Symbian 3 でアプリケーションを開発しています。ユーザーからテキスト入力を受け取る QDialog があります。QLineEdit に入力されたテキストが表示されないことを除いて、すべて正常に動作します。テキストはありますが、表示されません。update() と setText() 、さらにはスタイリングを使用しましたが、効果はありませんか? 誰でも私を助けてもらえますか??
テキスト表示はありませんが、これを行うyour_line_edit->text();と、入力したテキストは本当にありますか?
your_line_edit->text();
私が思いつくことができる唯一の解決策は、これを行うことです:
your_line_edit->setEchoMode( QLineEdit::Normal );
それがうまくいくかどうか教えてください。