예제 #1
0
        private void ShowStage()
        {
            if (stageForm == null)
            {
                stageForm = new StageForm(this);
            }

            stageForm.GotFocus    += StageForm_GotFocus;
            stageForm.FormClosing += StageForm_FormClosing;

            MainForm.Instance.ShowStageForm(stageForm);
            stageForm.Focus();
        }