Esempio n. 1
0
 /// <summary>
 /// Raises the <see cref="HotspotDoubleClick"/> event.
 /// </summary>
 /// <param name="e">An <see cref="ScintillaMouseEventArgs"/> that contains the event data.</param>
 protected virtual void OnHotspotDoubleClick(ScintillaMouseEventArgs e)
 {
     EventHandler<ScintillaMouseEventArgs> handler = Events[_hotSpotDoubleClickEventKey] as EventHandler<ScintillaMouseEventArgs>;
     if (handler != null)
         handler(this, e);
 }
Esempio n. 2
0
 /// <summary>
 /// Raises the <see cref="IndicatorClick"/> event.
 /// </summary>
 /// <param name="e">An <see cref="ScintillaMouseEventArgs"/> that contains the event data.</param>
 protected virtual void OnIndicatorClick(ScintillaMouseEventArgs e)
 {
     EventHandler<ScintillaMouseEventArgs> handler = Events[_indicatorClickEventKey] as EventHandler<ScintillaMouseEventArgs>;
     if (handler != null)
         handler(this, e);
 }
Esempio n. 3
0
 /// <summary>
 /// Raises the <see cref="DwellStart"/> event.
 /// </summary>
 /// <param name="e">An <see cref="ScintillaMouseEventArgs"/> that contains the event data.</param>
 protected virtual void OnDwellStart(ScintillaMouseEventArgs e)
 {
     EventHandler<ScintillaMouseEventArgs> handler = Events[_dwellStartEventKey] as EventHandler<ScintillaMouseEventArgs>;
     if (handler != null)
         handler(this, e);
 }