QComboBox Popup Hover Style [SOLVED]
General and Desktop
4
Posts
2
Posters
4.3k
Views
1
Watching
-
Try this.
@ QComboBox combo;
QListView * listView = new QListView(&combo);
combo.addItem("pthinks.com");
combo.addItem("Bangaluru");
combo.addItem("india");
combo.addItem("dheerendra");
listView->setStyleSheet("QListView::item:hover {
background: red }
");combo.setView(listView); combo.show();@ -
You can move this to SOLVED state by editing your question.