📄 smartphonehelp.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 + -