public void OnBallInPlay(BallEventArgs e) { if (BallInPlay != null) { BallInPlay(this, e); } }
private void playBall_Click(object sender, EventArgs e) { BallEventArgs ballEventArgs = new BallEventArgs( (int)trajectory.Value, (int)distance.Value); ball.OnBallInPlay(ballEventArgs); }
void ball_BallInPlay(object sender, EventArgs e) { if (e is BallEventArgs) { BallEventArgs ballEventArgs = e as BallEventArgs; if (ballEventArgs.Distance > 400 && ballEventArgs.Trajectory > 30) { Console.WriteLine("Fan: Home run! I’m going for the ball!"); } else { Console.WriteLine("Fan: Woo-hoo! Yeah!"); } } }
void ball_BallInPlay(object sender, EventArgs e) { if (e is BallEventArgs) { BallEventArgs ballEventArgs = e as BallEventArgs; if ((ballEventArgs.Distance < 95) && (ballEventArgs.Trajectory < 60)) { CatchBall(); } else { CoverFirstBase(); } } }