QTextBrowser的一些设置 .

来源 http://blog.csdn.net/chenzhoutong/article/details/6410135

qt

ui->textBrowser->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);//设置垂直滚动条不可见
ui->textBrowser->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);//设置水平滚动条不可见
 
QTextCursor text_cursor(ui->textBrowser->textCursor());//设置光标的位置
text_cursor.movePosition(QTextCursor::End);
ui->textBrowser->setTextCursor(text_cursor);

你可能感兴趣的:(QTextBrowser的一些设置 .)