How to Launch Web Browser/zh: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Cleanup | reason=Auto-imported from ExpressionEngine.}}
[[Category:snippets]]
[[Category:snippets]]
[[Category:HowTo]]
[[Category:HowTo]]
Line 6: Line 8:
= 如何启动Web浏览器 =
= 如何启动Web浏览器 =


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


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

Latest revision as of 16:00, 16 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 提供了一些常见的桌面服务,例如在默认的Web浏览器中打开一个URL访问。

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

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

参考文献