CmisSync.SetupController.SetupPageCompleted C# (CSharp) Method

SetupPageCompleted() public method

Move to second page of the tutorial.
public SetupPageCompleted ( ) : void
return void
        public void SetupPageCompleted()
        {
            TutorialCurrentPage = 1;
            ChangePageEvent(PageType.Tutorial);
        }

Usage Example

Esempio n. 1
0
 private void ShowWelcomePage()
 {
     Header       = Properties_Resources.Welcome;
     Description  = Properties_Resources.Intro;
     CancelButton = new NSButton()
     {
         Title = Properties_Resources.Cancel
     };
     ContinueButton = new NSButton()
     {
         Title   = Properties_Resources.Continue,
         Enabled = false
     };
     ContinueButton.Activated += delegate
     {
         Controller.SetupPageCompleted();
     };
     CancelButton.Activated += delegate
     {
         Controller.SetupPageCancelled();
     };
     Buttons.Add(ContinueButton);
     Buttons.Add(CancelButton);
     Controller.CheckSetupPage();
 }
All Usage Examples Of CmisSync.SetupController::SetupPageCompleted