math-suite/Source/TibisMathematicsSuite/KeyboardIO/MyKeyEventArgs.cs

25 lines
526 B
C#
Raw Permalink Normal View History

2018-02-05 23:24:46 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace TibisMathematicsSuite.KeyboardIO
{
public class MyKeyEventArgs : EventArgs
{
public MyKey Key { get; set; }
public MyKeyEventArgs() : base() { }
public MyKeyEventArgs(MyKey key)
{
Key = key;
}
public MyKeyEventArgs(System.Windows.Forms.Keys k, MyKey.Modifiers mods = MyKey.Modifiers.None)
{
Key = new MyKey(k, mods);
}
}
}