Files
ShrlAlgoToolkit/WPFDark/Internals/KeyboardHelper.cs
ShrlAlgo 4d35cadb56 更新
2025-07-11 09:20:23 +08:00

11 lines
342 B
C#

namespace WPFDark.Internals
{
internal static class KeyboardHelper
{
internal static bool IsPressShift =>
(Win32Helper.GetAsyncKeyState(Win32Helper.VK_SHIFT) & 0x8000) != 0;
internal static bool IsPressControl =>
(Win32Helper.GetAsyncKeyState(Win32Helper.VK_CONTROL) & 0x8000) != 0;
}
}