示例#1
0
        private void ResetClick(object sender, EventArgs e)
        {
            if (!Abort.AbortCurrentAction())
                return;

            Initialize();
            NeedRefresh = true;
        }
示例#2
0
 private void Reset_Click(object sender, EventArgs e)
 {
     Cursor.Current = Cursors.WaitCursor;
     if (Abort.AbortCurrentAction())
     {
         Close();
     }
     Cursor.Current = Cursors.Default;
 }