11 lines
266 B
C#
11 lines
266 B
C#
namespace CC_Functions.W32.Hooks
|
|
{
|
|
public sealed class KeyboardHookEventArgs : EventArgs
|
|
{
|
|
public KeyboardHookEventArgs(Keys key) => Key = key;
|
|
|
|
public Keys Key { get; }
|
|
|
|
public override string ToString() => Key.ToString();
|
|
}
|
|
} |