IWindowCommon.cs 305 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows;
  7. using System.Windows.Input;
  8. namespace GeekDesk.Interface
  9. {
  10. public interface IWindowCommon
  11. {
  12. void OnKeyDown(object sender, KeyEventArgs e);
  13. }
  14. }