10 lines
168 B
C#
10 lines
168 B
C#
using System.Windows.Input;
|
|
|
|
namespace GeekDesk.Interface
|
|
{
|
|
public interface IWindowCommon
|
|
{
|
|
void OnKeyDown(object sender, KeyEventArgs e);
|
|
}
|
|
}
|