How to change the color of QSplitter handle
m_pSplitMainWin->setHandleWidth(10);
m_pSplitMainWin->setStyleSheet("QSplitter::handle:background-color: rgb(55, 100, 110);");
This is not working, PLease give your valuable input
How to change the color of QSplitter handle
m_pSplitMainWin->setHandleWidth(10);
m_pSplitMainWin->setStyleSheet("QSplitter::handle:background-color: rgb(55, 100, 110);");
This is not working, PLease give your valuable input
Works for me:
QSplitter::handle
{
background-color: rgb(255, 255, 255);
}
More complex example:
QSplitter#editorViewSplitter::handle:horizontal
{
border-left: 1px solid lightGray;
}
QSplitter#editorViewSplitter::handle:vertical
{
border-bottom: 1px solid lightGray;
}