How can I make QListWidget so its items will contain multiple strings per item like
Text1
subtext1
Text2
subtext2
How can I make QListWidget so its items will contain multiple strings per item like
Text1
subtext1
Text2
subtext2
How can I make QListWidget so its items will contain multiple strings per item like
Text1
subtext1
Text2
subtext2
This has been covered several times. There's no easy way to do it. You can either make up your own QListView or you can use QListWidget::setItemWidget to install your own widget in the QListWidget item.