CmisSync.SetupWizardController.ShowTutorialPage C# (CSharp) Method

ShowTutorialPage() public method

public ShowTutorialPage ( ) : void
return void
        void ShowTutorialPage()
        {
            SubController = new SetupSubTutorialController (Controller);
            switch (Controller.TutorialCurrentPage) {
            case 1:
                Header.StringValue = Properties_Resources.WhatsNext;
                SubController = new SetupSubTutorialBeginController (Controller);
                break;
            case 2:
                Header.StringValue = Properties_Resources.Synchronization;
                SubController = new SetupSubTutorialController (Controller);
                break;
            case 3:
                Header.StringValue = Properties_Resources.StatusIcon;
                SubController = new SetupSubTutorialController (Controller);
                break;
            case 4:
				Header.StringValue = String.Format(Properties_Resources.AddFolders, Properties_Resources.ApplicationName);
                SubController = new SetupSubTutorialEndController (Controller);
                break;
            }
            Description.StringValue = String.Empty;
            Content.ContentView = SubController.View;
        }