/// <summary>
 /// The ExtendedButtonClickEventArgs.
 /// </summary>
 /// <param name="type">The button type.</param>
 /// <param name="x">The x position of the click.</param>
 /// <param name="y">The y position of the click.</param>
 public ExtendedButtonClickEventArgs(ExtendedButtonType type, int x, int y)
 {
     this.X = x; this.Y = y; this.ButtonType = type;
 }
 /// <summary>
 /// The default construtor.
 /// </summary>
 /// <param name="type">The type of button.</param>
 public ExtendedButtonClickEventArgs(ExtendedButtonType type)
 {
     this.X          = -1;
     this.Y          = -1;
     this.ButtonType = type;
 }