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