private void HandleClickCountEvent(ClickCountEvent evt)
 {
     // Passes the event to the global event dispatcher triggering anything mapped to the event
     Dispatch(evt);
 }
 public ClickCountEvent(ClickCountEvent.Type type)
     : base(type)
 {
 }