Add HotKeyListener
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
namespace Toolkit.Windows;
|
||||
|
||||
public interface IHotKeyManager :
|
||||
IDisposable
|
||||
{
|
||||
void Add(int key, HotKeyDescriptor descriptor);
|
||||
|
||||
bool Contains(int key);
|
||||
|
||||
void Remove(int key);
|
||||
}
|
||||
Reference in New Issue
Block a user