Exemple #1
0
 protected virtual void OnHotspotDoubleClick(ScintillaMouseEventArgs e)
 {
     if (Events[_hotSpotDoubleClickEventKey] != null)
         ((EventHandler<ScintillaMouseEventArgs>)Events[_hotSpotDoubleClickEventKey])(this, e);
 }
Exemple #2
0
 protected virtual void OnIndicatorClick(ScintillaMouseEventArgs e)
 {
     if (Events[_indicatorClickEventKey] != null)
         ((EventHandler<ScintillaMouseEventArgs>)Events[_indicatorClickEventKey])(this, e);
 }
Exemple #3
0
 protected virtual void OnDwellStart(ScintillaMouseEventArgs e)
 {
     if (Events[_dwellStartEventKey] != null)
         ((EventHandler<ScintillaMouseEventArgs>)Events[_dwellStartEventKey])(this, e);
 }