⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 smartphonehelp.cs

📁 清华大学出版社出版的 移动应用开发宝典 张大威(2008)的附书源代码
💻 CS
字号:
using System;
using System.Diagnostics;

namespace KioskLibrary
{
    public static class SmartphoneHelp
    {
        /// <summary>
        /// Displays the contents of the Help file at the specified URL using Internet Explorer
        /// </summary>
        /// <param name="url">The path and name of the Help file.</param>
        public static void ShowTopic(string url)
        {
            Process.Start(url, "");
        }
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -