3

我正在使用QListView带有自定义背景图像的图像,并且我想摆脱 OS X 上 QListView 周围出现的蓝色轮廓边框。

我尝试使用以下方式对其进行样式设置:

border: 0 none;
outline: 0 none;
border-collapse: collapse;

但它仍然出现。

我需要做什么才能摆脱这种蓝色色调?

4

1 回答 1

14

这应该有效:

yourListView->setAttribute(Qt::WA_MacShowFocusRect, false);
于 2012-12-20T18:54:57.120 回答