Qt设置鼠标等待状态与恢复

鼠标忙碌

QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));

恢复

QApplication::restoreOverrideCursor();

你可能感兴趣的:(c++,Qt)