Exemplo n.º 1
0
 private void optionsToolStripMenuItem_Click(object sender, EventArgs e)
 {
     frmOptions optionsForm = new frmOptions();
     optionsForm.ShowDialog();
 }
Exemplo n.º 2
0
        private void Form1_Load(object sender, EventArgs e)
        {
            if (Properties.Settings.Default.pathToAtomicParsley == "" || Properties.Settings.Default.pathToHandbrake == "" || Properties.Settings.Default.pathToMP4Box == "")
            {
                frmOptions optionsForm = new frmOptions();
                optionsForm.ShowDialog();
            }

            frontPage.Show();
            subtitleOnly.Hide();
            subtitleWizPage.Hide();
            encodingOnly.Hide();
            encodingWizPage.Hide();
            metadataOnly.Hide();
            metadataWizPage.Hide();
            statusPage.Hide();
        }