环境 window7 qt 4.8.6,qlineedit通过qstyle设置为黑色背景,当鼠标指针从上面滑过是,qlineedit闪烁白底
解决方法是在main函数中设置style,
QApplication a(argc, argv);
QStyle *style = QStyleFactory::create("windows");
if (style)
{
QApplication::setStyle(style);
}
else
{
qDebug()<< "style not support";
}