Ejemplo n.º 1
0
        private void initializeAboutMeForm()
        {
            FormType    formType = FormType.AboutMe;
            AboutMeForm aboutMe  = ReturnableFormFactory.GetForm(formType, this) as AboutMeForm;

            Hide();
            aboutMe.ShowDialog();
        }
Ejemplo n.º 2
0
        private void initializeAboutMeForm()
        {
            FormType    formType = FormType.AboutMe;
            AboutMeForm aboutMe  = ReturnableFormFactory.GetForm(formType, this) as AboutMeForm;

            aboutMe.m_DoWhenFormIsClosed += () =>
            {
                setFormUsageDetails(aboutMe);
            };
            Hide();
            aboutMe.ShowDialog();
        }