Interaction logic for TestPlanViewUI.xaml
Inheritance: System.Windows.Window
Exemple #1
0
        private void CheckTestPlanHyperLink_Click(object sender, RoutedEventArgs e)
        {
            TestPlanViewUI ts = new TestPlanViewUI();

            ts.tfs = this.destinationTFS;
            ts.targetProjectName = this.destinationProject.Name;
            ts.printProjectName();
            ts.Show();
        }
 private void CheckTestPlanHyperLink_Click(object sender, RoutedEventArgs e)
 {
     TestPlanViewUI ts = new TestPlanViewUI();
     ts.tfs = destinationTFS;
     ts.targetProjectName = destinationProject.Name;
     ts.printProjectName();
     ts.Show();
 }