Files
ShrlAlgoToolkit/WPFDark/Internals/KeyboardHelper.cs

11 lines
342 B
C#
Raw Normal View History

2025-07-11 09:20:23 +08:00
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;
}
}