Ejemplo n.º 1
0
        private void FormMain_Shown(object sender, EventArgs e)
        {
            // Main form has just been shown, so check if we need to display release notes

            if (!_formConfig.ConfigSavedToDisk)
            {
                // We don't have an existing configuration file, so this is the first run of SOAPe
                FormIntro formIntro = new FormIntro();
                formIntro.ShowDialog(this);
            }
            this.Shown -= FormMain_Shown; // We don't want to display the form more than once, so no need to keep the event
        }
Ejemplo n.º 2
0
        private void releaseNotesToolStripMenuItem_Click(object sender, EventArgs e)
        {
            FormIntro formIntro = new FormIntro();

            formIntro.ShowDialog(this);
        }