mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
17 lines
377 B
C#
17 lines
377 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Input;
|
|
|
|
namespace Wox.Plugin
|
|
{
|
|
public delegate void WoxKeyDownEventHandler(object sender, WoxKeyDownEventArgs e);
|
|
|
|
public class WoxKeyDownEventArgs
|
|
{
|
|
public string Query { get; set; }
|
|
public KeyEventArgs keyEventArgs { get; set; }
|
|
}
|
|
}
|