styleComboBox = new QComboBox; styleComboBox->addItem(tr("SolodLine") , static_cast<int>(Qt::SolidLine)); styleComboBox->addItem(tr("DashLine") , static_cast<int>(Qt::DashLine)); styleComboBox->addItem(tr("DotLine") , static_cast<int>(Qt::DotLine)); styleComboBox->addItem(tr(...
3.双缓冲绘图,原理是在拖动过程中先把原来的图形复制到tempPix里面并在tempPix里面画,我们此时看到的就是在tempPix里的图形。只在鼠标释放的时候才在pix绘一次。 在paintEvent函数中,如果左键正在按着拖动,那就每次paintEvent事件时都在tempPix上绘图,并且在tempPix上绘图之前把pix复制给tempPix。而在左键释放的时候...
http://blog.csdn.net/rl529014/article/details/51658350