Add HotKeyListener

This commit is contained in:
Daniel Clark
2025-03-04 17:00:00 +00:00
parent dad7c54f0d
commit cee6557fb4
19 changed files with 424 additions and 297 deletions
+11
View File
@@ -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);
}