2 using System.Collections.Generic;
6 using System.Windows.Controls;
7 using System.Windows.Data;
8 using System.Windows.Documents;
9 using System.Windows.Input;
10 using System.Windows.Media;
11 using System.Windows.Media.Imaging;
12 using System.Windows.Shapes;
13 using System.Windows.Threading;
15 namespace SeciUserInterface.Forms
22 DispatcherTimer _timer =
new DispatcherTimer();
27 InitializeComponent();
31 _timer.Interval =
new TimeSpan(0,0,1);
32 _timer.Tick +=
new EventHandler(_timer_Tick);
45 txtTime.Text =
"The configuration will automatically be reloaded in " + time +
" seconds.";
55 private void No_Clicked(
object sender, RoutedEventArgs e)