Ejemplo n.º 1
0
        private void button1_Click(object sender, EventArgs e)
        {
            MainInterface.Element = MainInterface.ElementType.eight_Noded_Hexahedral;
            MainInterface mainForm = new MainInterface();

            mainForm.ShowDialog();
            this.Close();
        }
Ejemplo n.º 2
0
        private void button1_Click(object sender, EventArgs e)
        {
            int           Element_Type = 0; // 0 is eight noded hexahedral
            MainInterface mainForm     = new MainInterface(Element_Type);

            mainForm.ShowDialog();
            this.Close();
        }