Files
GeekDesk/Interface/IWindowCommon.cs
2022-06-08 15:52:48 +08:00

10 lines
168 B
C#

using System.Windows.Input;
namespace GeekDesk.Interface
{
public interface IWindowCommon
{
void OnKeyDown(object sender, KeyEventArgs e);
}
}