Esc退出窗口

This commit is contained in:
liufei
2021-12-20 09:42:13 +08:00
parent e6a95c4668
commit c13593bdf4
2 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Input;
namespace GeekDesk.Interface
{
public interface IWindowCommon
{
void OnKeyDown(object sender, KeyEventArgs e);
}
}