Dear Experts!!
I have a problem with my painter. I want to paint my form by without using paint event.
Is it possible? In some examples I saw that they use QPixmap for painting on it. Is it a good way to paint on a pixmap and locate it on my form?
Thanks
Code:
pixmap.fill(Qt::transparent); painter.fillRect(0, 0, 100, 100, gradient); channelImage = pixmap.alphaChannel(); update();