0

截图链接:http: //qt-apps.org/CONTENT/content-pre1/119860-1.png

我想自定义滚动条句柄和 QSplitter 句柄的外观,就像上面的屏幕截图链接一样。我知道它可以从样式表中完成。但是我不知道如何实现这一点。Holp有人可以分享一个小例子。谢谢!

4

2 回答 2

3

If you just want to customize the splitters instead of changing the whole style:

qApp->setStyleSheet(
    "QSplitter::handle:vertical   {height: 6px; image: url(images/vsplitter.png);}"
    "QSplitter::handle:horizontal {width:  6px; image: url(images/hsplitter.png);}"
    );
于 2012-05-26T08:51:18.377 回答
1

那不是样式表,那是QPlastiqueStyle

setStyle(new QPlastiqueStyle);
于 2012-05-26T08:03:52.943 回答