Squashed 'NHotkey/' content from commit e16cceb
git-subtree-dir: NHotkey git-subtree-split: e16cceb7b3e108413d409dbf355a67835822a5e7
This commit is contained in:
21
NHotkey/HotkeyEventArgs.cs
Normal file
21
NHotkey/HotkeyEventArgs.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
|
||||
namespace NHotkey
|
||||
{
|
||||
public class HotkeyEventArgs : EventArgs
|
||||
{
|
||||
private readonly string _name;
|
||||
|
||||
internal HotkeyEventArgs(string name)
|
||||
{
|
||||
_name = name;
|
||||
}
|
||||
|
||||
public string Name
|
||||
{
|
||||
get { return _name; }
|
||||
}
|
||||
|
||||
public bool Handled { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user