Exemplo n.º 1
0
        public void Start()
        {
            _viewModel.Start();
            StartButton.IsEnabled = false;
            PauseButton.IsEnabled = true;

            _notifyIcon.Icon = Properties.Resources.clock_on;
        }
Exemplo n.º 2
0
 private void BtnStart_Click(object sender, RoutedEventArgs e)
 {
     _viewModel.Start();
     BtnStart.IsEnabled = false;
     BtnStop.IsEnabled  = true;
 }