CmisSync.SetupSubTutorialController.AwakeFromNib C# (CSharp) Method

AwakeFromNib() public method

public AwakeFromNib ( ) : void
return void
        public override void AwakeFromNib ()
        {
            base.AwakeFromNib ();

            this.ContinueButton.Title = Properties_Resources.Continue;
//            this.ContinueButton.KeyEquivalent = "\r";

            NSImage image = new NSImage (UIHelpers.GetImagePathname ("tutorial-slide-" + Controller.TutorialCurrentPage)) {
                Size = new SizeF (350, 200)
            };
            TutorialView.Image = image;

            switch (Controller.TutorialCurrentPage) {
            case 2:
                TutorialText.StringValue = Properties_Resources.DocumentsAre;
                break;
            case 3:
				TutorialText.StringValue = String.Format(Properties_Resources.StatusIconShows, Properties_Resources.ApplicationName);
                break;
            }
        }