Inheritance: System.Windows.Forms.Form
        //neues projekt anlegen
        private void newPro_Butt_Click(object sender, EventArgs e)
        {
            CreateProject newPro = new CreateProject();
            newPro.StartPosition = FormStartPosition.CenterParent;

            if (newPro.ShowDialog() == DialogResult.OK)
                projekteInitialisieren();

            newPro.Dispose();
        }
        //neues projekt anlegen
        private void newPro_Butt_Click(object sender, EventArgs e)
        {
            CreateProject newPro = new CreateProject();

            newPro.StartPosition = FormStartPosition.CenterParent;

            if (newPro.ShowDialog() == DialogResult.OK)
            {
                projekteInitialisieren();
            }

            newPro.Dispose();
        }