11 lines
342 B
C#
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;
|
|
}
|
|
} |