private void addTesterButton_Click(object sender, RoutedEventArgs e)
        {
            //Window Addtester = new AddTester();
            //Addtester.Show();
            AddTesterPage t = new AddTesterPage();

            this.NavigationService.Navigate(t);
        }
        private void button_Click(object sender, RoutedEventArgs e)
        {
            temp.MatrixTesterworkdays[0, 0].DoesWork = checkBox1.IsChecked.Value;
            temp.MatrixTesterworkdays[0, 1].DoesWork = checkBox7.IsChecked.Value;
            temp.MatrixTesterworkdays[0, 2].DoesWork = checkBox13.IsChecked.Value;
            temp.MatrixTesterworkdays[0, 3].DoesWork = checkBox19.IsChecked.Value;
            temp.MatrixTesterworkdays[0, 4].DoesWork = checkBox25.IsChecked.Value;
            temp.MatrixTesterworkdays[1, 0].DoesWork = checkBox2.IsChecked.Value;
            temp.MatrixTesterworkdays[1, 1].DoesWork = checkBox8.IsChecked.Value;
            temp.MatrixTesterworkdays[1, 2].DoesWork = checkBox14.IsChecked.Value;
            temp.MatrixTesterworkdays[1, 3].DoesWork = checkBox20.IsChecked.Value;
            temp.MatrixTesterworkdays[1, 4].DoesWork = checkBox26.IsChecked.Value;
            temp.MatrixTesterworkdays[2, 0].DoesWork = checkBox3.IsChecked.Value;
            temp.MatrixTesterworkdays[2, 1].DoesWork = checkBox9.IsChecked.Value;
            temp.MatrixTesterworkdays[2, 2].DoesWork = checkBox15.IsChecked.Value;
            temp.MatrixTesterworkdays[2, 3].DoesWork = checkBox21.IsChecked.Value;
            temp.MatrixTesterworkdays[2, 4].DoesWork = checkBox27.IsChecked.Value;
            temp.MatrixTesterworkdays[3, 0].DoesWork = checkBox4.IsChecked.Value;
            temp.MatrixTesterworkdays[3, 1].DoesWork = checkBox10.IsChecked.Value;
            temp.MatrixTesterworkdays[3, 2].DoesWork = checkBox16.IsChecked.Value;
            temp.MatrixTesterworkdays[3, 3].DoesWork = checkBox22.IsChecked.Value;
            temp.MatrixTesterworkdays[3, 4].DoesWork = checkBox28.IsChecked.Value;
            temp.MatrixTesterworkdays[4, 0].DoesWork = checkBox5.IsChecked.Value;
            temp.MatrixTesterworkdays[4, 1].DoesWork = checkBox11.IsChecked.Value;
            temp.MatrixTesterworkdays[4, 2].DoesWork = checkBox17.IsChecked.Value;
            temp.MatrixTesterworkdays[4, 3].DoesWork = checkBox23.IsChecked.Value;
            temp.MatrixTesterworkdays[4, 4].DoesWork = checkBox29.IsChecked.Value;
            temp.MatrixTesterworkdays[5, 0].DoesWork = checkBox6.IsChecked.Value;
            temp.MatrixTesterworkdays[5, 1].DoesWork = checkBox12.IsChecked.Value;
            temp.MatrixTesterworkdays[5, 2].DoesWork = checkBox18.IsChecked.Value;
            temp.MatrixTesterworkdays[5, 3].DoesWork = checkBox24.IsChecked.Value;
            temp.MatrixTesterworkdays[5, 4].DoesWork = checkBox30.IsChecked.Value;

            AddTesterPage addMatrix = new AddTesterPage();

            addMatrix.temp_tester.MatrixTesterworkdays = (TesterWrokSchedule[, ])temp.Clone();
            this.Close();
        }