CmisSync.SetupSubTutorialEndController.AwakeFromNib C# (CSharp) Method

AwakeFromNib() public method

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

			this.StartCheck.Title = String.Format(Properties_Resources.Startup, Properties_Resources.ApplicationName);
            this.FinishButton.Title = Properties_Resources.Finish;
//            this.FinishButton.KeyEquivalent = "\r";

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

            switch (Controller.TutorialCurrentPage) {
            case 4:
                TutorialText.StringValue = Properties_Resources.YouCan;
                OnStart (this);
                break;
            }
        }