Ejemplo n.º 1
0
 /// <summary>
 /// 删除断点事件
 /// </summary>
 /// <param name="sender">事件发送者</param>
 /// <param name="e">事件参数</param>
 private void luaEditBox_OnBreakPointRemoved(object sender, Fireball.Syntax.RowEventArgs e)
 {
     if (handleBreakPointRemoved != null)
     {
         handleBreakPointRemoved(this, e.Row);
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// 处理删除断点事件
 /// </summary>
 /// <param name="sender">事件发送者</param>
 /// <param name="e">事件参数</param>
 private void luaEditorBreakPointRemoved(object sender, RowEventArgs e)
 {
     if (OnBreakPointRemoved != null)
     {
         OnBreakPointRemoved(sender, e);
     }
 }