Beispiel #1
0
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            ProcessesView view       = new ProcessesView();
            ITMModel      model      = new TMModel();
            PVController  controller = new PVController(model, view);

            Application.Run(view);
        }
Beispiel #2
0
 public PVController(ITMModel model, ProcessesView view) : this()
 {
     this.model = model;
     this.view  = view;
     SetController();
 }