QTextBrowser问题会的来接分
QTextBrowser如何让指定行高亮?给一个整数8和一个文本文件,让文本文件在QTextBrowser上显示,并且第8行高亮,会的来接分
[解决办法]
可以用QTextCharFormat 的setForeground( const QBrush brush )实现
QTextCharFormat textformat;
textformat.setForeground( Qt::red );
QTextCursor cursor = textCursor();
cursor.mergeCharFormat(textformat);
mergeCurrentCharFormat(textformat);
[解决办法]
呵呵,支持一下。
[解决办法]
很好,学习了,楼主你太帅了,快捷贴