Habanero.Faces.Win.WizardControlWin.FinishButton_Click C# (CSharp) Method

FinishButton_Click() private method

private FinishButton_Click ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void FinishButton_Click(object sender, EventArgs e)
        {
            try
            {
                Finish();
            }
            catch (Exception ex)
            {
                GlobalRegistry.UIExceptionNotifier.Notify(ex, "Cannot complete wizard step due to an error:",
                                                          "Wizard Step Error");
            }
        }