Ejemplo n.º 1
0
        void item_Click(object sender, EventArgs e)
        {
            EnumWolfRam type = (EnumWolfRam)((ToolStripMenuItem)sender).Tag;

            ControllerWolfRam.Instance.Run(type);

            //  MessageBox.Show("Operation finished!");
        }
Ejemplo n.º 2
0
        public void Run(EnumWolfRam type)
        {
            switch (type)
            {
            case EnumWolfRam.SimpleLink:
                SimpleLink();
                break;

            case EnumWolfRam.MathKernel:
                MathKernel();
                break;
            }
        }
Ejemplo n.º 3
0
        public void Run(EnumWolfRam type)
        {
            switch(type)
            {
                
                case EnumWolfRam.SimpleLink:
                    SimpleLink();
                    break;
                case EnumWolfRam.MathKernel:
                    MathKernel();
                    break;
            }

        }