Exemplo n.º 1
0
 public MainWindow()
 {
     InitializeComponent();
     CheckTimer.Interval = TimeSpan.FromSeconds(3);
     CheckTimer.Tick    += UpdateChat;
     CheckTimer.Start();
     this.Logs            = new List <Log>();
     ChatView.ItemsSource = this.Logs;
     OptionsController.CheckIfSet();
 }