AGS.Editor.frmMain.frmMain_Shown C# (CSharp) Метод

frmMain_Shown() приватный Метод

private frmMain_Shown ( object sender, EventArgs e ) : void
sender object
e EventArgs
Результат void
        private void frmMain_Shown(object sender, EventArgs e)
        {
            this.tabbedDocumentContainer1.Init();

            if (AGS.Types.Version.IS_BETA_VERSION)
            {
                Factory.GUIController.ShowMessage("This is a BETA version of AGS. BE VERY CAREFUL and MAKE SURE YOU BACKUP YOUR GAME before loading it in this editor.", MessageBoxIcon.Warning);
            }

            if (!Factory.GUIController.ShowWelcomeScreen())
            {
                Factory.GUIController.ShowCuppit("To get started, check out the tree in the top-right hand corner. That's the main way you'll be moving between different parts of the editor.", "Initial editor welcome");
            }
        }