How to Launch Web Browser/zh

From Qt Wiki
< How to Launch Web Browser
Revision as of 08:43, 4 March 2015 by AutoSpider (talk | contribs) (Convert ExpressionEngine links)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
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"));

参考文献