How to Launch Web Browser/zh

From Qt Wiki
Jump to navigation Jump to search
This article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine.
Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean.

简体中文 English Български Русский

如何启动Web浏览器

QDesktopServices 提供了一些常见的桌面服务,例如在默认的Web浏览器中打开一个URL访问。

请不要忘记包含以下头文件:

#include <QDesktopServices>
#include <QUrl>
QDesktopServices::openUrl(QUrl("http://developer.qt.nokia.com"));

参考文献