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