QlineEdit失去焦点后还有光标残影

QlineEdit失去焦点后还有光标残影_第1张图片
解决方法:
tmpEd->setDisabled(false);
tmpEd->setFocusPolicy(Qt::ClickFocus);
tmpEd->setReadOnly(true);

你可能感兴趣的:(QT)