/// <summary> /// Event handler to fail test B /// </summary> /// <param name="sender">The UI element that originated this event</param> /// <param name="e">Routed event args</param> private void FailB_Click(object sender, RoutedEventArgs e) { MPS115CTC1 module = this.DataContext as MPS115CTC1; module.Fail("Join Session in Progress"); }
/// <summary> /// Event handler to fail test A /// </summary> /// <param name="sender">The UI element that originated this event</param> /// <param name="e">Routed event args</param> private void FailA_Click(object sender, RoutedEventArgs e) { MPS115CTC1 module = this.DataContext as MPS115CTC1; module.Fail("Game Invite"); }