Esempio n. 1
0
 public TVController(ITMModel model, ThreadsView view, Process process) : this()
 {
     this.model   = model;
     this.view    = view;
     this.process = process;
     SetController();
     view.SetTitle(process.ProcessName);
 }
Esempio n. 2
0
        public static void CreateThreadsWindow(System.Diagnostics.Process process)
        {
            ThreadsView  view       = new ThreadsView();
            ITMModel     model      = new TMModel();
            TVController controller = new TVController(model, view, process);

            view.Visible = true;
        }