📄 api.cs
字号:
using System;
using System.Runtime.InteropServices;
/// <summary>
/// Summary description for API
/// </summary>
public class API
{
public API()
{
//
// TODO: Add constructor logic here
//
}
[DllImport("coredll.dll")]
public static extern bool SetForegroundWindow(IntPtr hWnd);
[DllImport("coredll.dll")]
public static extern IntPtr FindWindow(string lpClassName, string lpWindowName);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -