コード例 #1
0
ファイル: ScintillaControl.cs プロジェクト: pclancy/ODBX
 protected virtual void OnHotspotDoubleClick(ScintillaMouseEventArgs e)
 {
     if (Events[_hotSpotDoubleClickEventKey] != null)
         ((EventHandler<ScintillaMouseEventArgs>)Events[_hotSpotDoubleClickEventKey])(this, e);
 }
コード例 #2
0
ファイル: ScintillaControl.cs プロジェクト: pclancy/ODBX
 protected virtual void OnIndicatorClick(ScintillaMouseEventArgs e)
 {
     if (Events[_indicatorClickEventKey] != null)
         ((EventHandler<ScintillaMouseEventArgs>)Events[_indicatorClickEventKey])(this, e);
 }
コード例 #3
0
ファイル: ScintillaControl.cs プロジェクト: pclancy/ODBX
 protected virtual void OnDwellStart(ScintillaMouseEventArgs e)
 {
     if (Events[_dwellStartEventKey] != null)
         ((EventHandler<ScintillaMouseEventArgs>)Events[_dwellStartEventKey])(this, e);
 }