YetAnotherRelogger.Forms.Wizard.WizardMain.NextStep C# (CSharp) Method

NextStep() public method

public NextStep ( string title ) : void
title string
return void
        public void NextStep(string title)
        {
            this.Text = string.Format("{0} (Step {1}/{2})", title, _stepCount-2, FinishCount-2);
        }

Usage Example

Esempio n. 1
0
 private void Advanced_VisibleChanged(object sender, EventArgs e)
 {
     if (Visible)
     {
         WM.NextStep("Advanced Settings");
     }
 }
All Usage Examples Of YetAnotherRelogger.Forms.Wizard.WizardMain::NextStep