Beispiel #1
0
        public MainWindow()
        {
            InitializeComponent();

            progressTimer.Interval = new TimeSpan(0, 0, 0, 1);
            progressTimer.Tick    += ProgressTimer_Tick;

            DataContext = ViewModel;

            SearchPanel.Visibility = Visibility.Collapsed;
            activeDiff             = LeftDiff;
        }
Beispiel #2
0
 private void LeftDiff_GotFocus(object sender, RoutedEventArgs e)
 {
     activeDiff = LeftDiff;
     ViewModel.FindPanelRight = false;
 }
Beispiel #3
0
 private void RightDiff_GotFocus(object sender, RoutedEventArgs e)
 {
     activeDiff = RightDiff;
     ViewModel.FindPanelRight = true;
 }