示例#1
0
 /// <summary>
 /// returns whether this key is a "modifier" key i.e. control, shift or alt
 /// </summary>
 public static bool IsMod(Keys k)
 {
     return(KBHelper.IsShift(k) || KBHelper.IsAlt(k) || KBHelper.IsCtrl(k));
 }