示例#1
0
文件: Macro.cs 项目: richardj97/Macro
 /// <summary>
 /// Appends an event to the end of this macro.
 /// </summary>
 /// <param name="newEvent">The event to append.</param>
 public void AddMouseEvent(MacroEvent newEvent)
 {
     events.Add(newEvent);
     OnMouseTrigger(newEvent);
 }
示例#2
0
 /// <summary>
 /// Appends an event to the end of this macro.
 /// </summary>
 /// <param name="newEvent">The event to append.</param>
 public void AddEvent(MacroEvent newEvent)
 {
     events.Add(newEvent);
 }
示例#3
0
文件: Macro.cs 项目: richardj97/Macro
 /// <summary>
 /// Appends an event to the end of this macro.
 /// </summary>
 /// <param name="newEvent">The event to append.</param>
 public void AddKeyEvent(MacroEvent newEvent)
 {
     events.Add(newEvent);
     OnKeyTrigger(newEvent);
 }