以下是Qt中Text Browser控件的一个简单示例:
#include <QApplication>
#include <QTextBrowser>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QTextBrowser textBrowser;
textBrowser.setPlainText("Hello World!");
textBrowser.show();
return app.exec();
}
这个例子创建了一个QTextBrowser对象,并将其文本内容设置为“Hello World!”。然后,它展示了该控件并进入Qt应用程序事件循环。