Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            Model model = new Model();

            first  view1 = new first(model);
            second view2 = new second(model);
            third  view3 = new third(model);

            view2.Show();
            view3.Show();

            Application.Run(view1);
        }
Ejemplo n.º 2
0
 public thirdController(third view, Model model)
 {
     this.model = model;
     this.view  = view;
 }