📄 windowscontrol.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace UtilControl
{
public class WindowsControl
{
public static void Logout()
{
Win32.ExitWindowsEx((long)Win32.EWX.EWX_LOGOFF, 0);
}
public static void Rebooot()
{
Win32.ExitWindowsEx((long)Win32.EWX.EWX_REBOOT, 0);
}
public static void ShutDown()
{
Win32.ExitWindowsEx((long)Win32.EWX.EWX_SHUTDOWN, 0);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -