Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用QListView带有自定义背景图像的图像,并且我想摆脱 OS X 上 QListView 周围出现的蓝色轮廓边框。
QListView
我尝试使用以下方式对其进行样式设置:
border: 0 none; outline: 0 none; border-collapse: collapse;
但它仍然出现。
我需要做什么才能摆脱这种蓝色色调?
这应该有效:
yourListView->setAttribute(Qt::WA_MacShowFocusRect, false);