I would like to use "skins" in my application, but I have no idea of how to put image on QSplitter. Could anyone help me with this?
Thanks in advance!
Printable View
I would like to use "skins" in my application, but I have no idea of how to put image on QSplitter. Could anyone help me with this?
Thanks in advance!
I don't know what it has to do with skins feature, but to put images on a QSplitter you could easily create a QLabel, set its Pixmap (image) with setPixmap and add it to the QSplitter. You could change the displayed image arbitrary by calling yourLabel->setPixmap(image).