hMailServer.Shared.ucWizard.buttonPrevious_Click C# (CSharp) Method

buttonPrevious_Click() private method

private buttonPrevious_Click ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void buttonPrevious_Click(object sender, EventArgs e)
        {
            Cursor current = Cursor.Current;

             this.Cursor = Cursors.WaitCursor;
             ShowPage(_currentPage - 1);
             this.Cursor = current;
        }