Qt 6.11 is out! See what's new in the release
blog
Qss qtreeview and checkboxes
General and Desktop
3
Posts
2
Posters
1.9k
Views
1
Watching
-
How to stylize checkboxes in treeview?
!http://www.gamedev.ru/files/images/gd_qtreeview.png(qtreeview)!PS
I post this question at several forums - but still no answers, may be developers can answer this. -
For example with qss:
@
treeView->setStyleSheet(
"QTreeView::indicator:checked { image: url(:/img/checked.png); } "
"QTreeView::indicator:unchecked { image: url(:/img/unchecked.png); } "
);
@