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