Files
GeekDesk/Interface/IWindowCommon.cs

10 lines
167 B
C#

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