private void btnCancel_Click(object sender, EventArgs e)
        {
            if (mEditingCommand != null)
            {
                mEventEditor.CancelCommandEdit(true);
            }

            mEventEditor.CloseMoveRouteDesigner(this);
        }
Ejemplo n.º 2
0
        private void btnCancel_Click(object sender, EventArgs e)
        {
            if (mCurrentPage != null)
            {
                mEventEditor.CancelCommandEdit();
            }

            Cancelled = true;
            if (ParentForm != null)
            {
                ParentForm.Close();
            }
        }
Ejemplo n.º 3
0
 private void btnCancel_Click(object sender, EventArgs e)
 {
     mEventEditor.CancelCommandEdit();
 }