Files
GeekDesk/Interface/IWindowCommon.cs

10 lines
168 B
C#
Raw Permalink Normal View History

using System.Windows.Input;
2021-12-20 09:39:27 +08:00
namespace GeekDesk.Interface
{
public interface IWindowCommon
{
void OnKeyDown(object sender, KeyEventArgs e);
2021-12-20 09:39:27 +08:00
}
}