Qt wiki will be updated on October 12th 2023 starting at 11:30 AM (EEST) and the maintenance will last around 2-3 hours. During the maintenance the site will be unavailable.
How to Launch Web Browser/zh: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
AutoSpider (talk | contribs) m (AutoSpider moved page How to Launch Web Browser SimplifiedChinese to How to Launch Web Browser/zh: Localisation) |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
[[Category:snippets]] | {{Cleanup | reason=Auto-imported from ExpressionEngine.}} | ||
[[Category:snippets]] | |||
[[Category:HowTo]] | |||
'''简体中文''' [[How_to_Launch_Web_Browser|English]] [[How_to_Launch_Web_Browser_Bulgarian|Български]] [[How_to_Launch_Web_Browser_Russian|Русский]] | '''简体中文''' [[How_to_Launch_Web_Browser|English]] [[How_to_Launch_Web_Browser_Bulgarian|Български]] [[How_to_Launch_Web_Browser_Russian|Русский]] | ||
Line 5: | Line 8: | ||
= 如何启动Web浏览器 = | = 如何启动Web浏览器 = | ||
类 | 类 [http://doc.qt.io/qt-5.0/qtgui/qdesktopservices.html QDesktopServices] 提供了一些常见的桌面服务,例如在默认的Web浏览器中打开一个URL访问。 | ||
请不要忘记包含以下头文件: | 请不要忘记包含以下头文件: | ||
<code> | |||
#include <QDesktopServices> | |||
#include <QUrl> | |||
</code> | |||
<code> | <code> | ||
QDesktopServices::openUrl(QUrl("http://developer.qt.nokia.com")); | |||
</code> | |||
== 参考文献 == | == 参考文献 == |
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"));