Files
GeekDesk/Interface/WindowCommon.cs

16 lines
305 B
C#
Raw Normal View History

2021-12-20 09:39:27 +08:00
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);
}
}