美文网首页
防止QSpinBox自动突出显示内容

防止QSpinBox自动突出显示内容

作者: BrokenRainK | 来源:发表于2019-07-16 19:44 被阅读0次
    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