求:QPainter画图,要在主窗口中实现一个类似画布的功能
RT。 要求画布设置成想要的背景色,然后用QPainter在画布上画。我在主窗口构造方法中用了以下方法,将整个窗口的背景色设置了。而我的要求是指设置背景色个某个特定的区域,以达到画布的效果。
QPalette bgpal = palette();
//bgpal.setColor (QPalette::Background, QColor (0, 0 , 0, 255));
bgpal.setColor (QPalette::Background, QColor (255, 255 , 127));
//bgpal.setColor (QPalette::Background, Qt::transparent);
//bgpal.setColor (QPalette::Foreground, QColor (255,255,255,255));
setPalette (bgpal);