How to Launch Web Browser/zh: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
(Add "cleanup" tag)
Line 1: Line 1:
{{Cleanup | reason=Auto-imported from ExpressionEngine.}}
[[Category:snippets]]
[[Category:snippets]]
[[Category:HowTo]]
[[Category:HowTo]]

Revision as of 15:47, 3 March 2015

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":http://doc.qt.io/qt-5.0/qtgui/qdesktopservices.html 提供了一些常见的桌面服务,例如在默认的Web浏览器中打开一个URL访问。

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

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

参考文献