Exemplo n.º 1
0
        public MonitorViewModel(IMonitorView view)
        {
            View = view;

            LabelContent = ">_";
            TimerContent = "00:00:0";

            _timer          = new DispatcherTimer();
            _timer.Tick    += dispatcherTimer_Tick;
            _timer.Interval = new TimeSpan(0, 0, 0, 0, 1);
            //Task.Factory.StartNew(() => TimerTest());
        }
Exemplo n.º 2
0
 public NbProcessPresenter(IMonitorView view)
 {
     this.view = view;
 }
Exemplo n.º 3
0
 public MonitorController(IMonitorView view)
 {
     this.mView = view;
 }