QT lineEdit 怎么自由的输入内容 我输入的时候只能输入汉字 无法输入字母和数字

2024-11-30 04:00:26
推荐回答(3个)
回答1:

可以使用信号SIGNAL和槽SLOT的机制来做:

做一个计时器QTimer定时更新温度值,没更新一次把更新结果显示到QLineEdit中。

另一种方法,你做的那个温度控件,send一个信号,触发槽,将当前温度值显示到QLineEdit中。

修改QlineEdit的值都用  setText(“当前温度值”) 。

例如第一种方法:

QTimer *updateTimer = new QTimer(this);

connect(updateTimer,SIGNAL(timeout()),this,SLOT(updateTemp()));

updateTimer->start(1000);  //以1000ms周期刷新实时温度值

updateTemp()

{  lineEdit->setText(nowTemp);}

3. 另外去掉白色底这个,用函数setStyleSheet(const QString &styleSheet)来实现。具体语法参看帮助文件中的:The Style Sheet Syntax.

例如修改:lineEdit->setStyleSheet("background:green;color:red");  //背景色green,前景色red

回答2:

我刚刚也出现了这个问题,lineEdit只能输入中文,而且还不能backspace。我最后发现是因为我写了this->grabKeyboard(),注释掉这一句就正常了。我qt版本是5.12

回答3:

你好!请问解决了吗,希望您赐教我这个新手