Beispiel #1
0
        private void button2_Click(object sender, EventArgs e)
        {
            Main m = new Main();
            m.Show();

            this.Hide();
        }
        private void Finish()
        {
            if (path != "")
            {
                string serial = wrapper.Serialize();

                File.WriteAllText(path + @"\capture.bcc", serial);

                // TODO: Route this through init
                Main m = new Main();
                m.Show();

                this.Hide();

            }
            else
                MessageBox.Show("You must select a valid save path for your file!");
        }