标签:
ui->revTextBrower->moveCursor(QTextCursor::End);
2、 隐藏标题栏
3、 如果不考虑跨平台的话,在隐藏标题栏的时候,移动窗口最简单的方法
//事件
void SerialPort::mouseMoveEvent(QMouseEvent *event){if (ReleaseCapture())SendMessage(HWND(this->winId()), WM_SYSCOMMAND, SC_MOVE + HTCAPTION, 0);event->ignore();
}
标签:
原文地址:http://www.cnblogs.com/mcumagic/p/5179488.html