/// <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); } }
/// <summary> /// 处理删除断点事件 /// </summary> /// <param name="sender">事件发送者</param> /// <param name="e">事件参数</param> private void luaEditorBreakPointRemoved(object sender, RowEventArgs e) { if (OnBreakPointRemoved != null) { OnBreakPointRemoved(sender, e); } }