connect(spinBox, SIGNAL(valueChanged(int)), this, SLOT(onSpinBoxValueChanged()), Qt::QueuedConnection);
void Window::onSpinBoxValueChanged()
{
spinBox->findChild<QLineEdit*>()->deselect(); //取消选定的文本
}
connect(spinBox, SIGNAL(valueChanged(int)), this, SLOT(onSpinBoxValueChanged()), Qt::QueuedConnection);
void Window::onSpinBoxValueChanged()
{
spinBox->findChild<QLineEdit*>()->deselect(); //取消选定的文本
}
本文标题:防止QSpinBox自动突出显示内容
本文链接:https://www.haomeiwen.com/subject/bshxlctx.html
网友评论