Exemple #1
0
        private void cmdAnswearFirst_Click(object sender, EventArgs e)
        {
            if (cmdAnswearSecond.Visible)
            {
                DecisionResult = GameEventDecisionResult.ManeuverToApproachTarget;
                Close();
            }

            rowSecondCaptainImage.Visible   = true;
            rowSecondCaptainMessage.Visible = true;

            rowThriedPilotImage.Visible   = true;
            rowThriedPilotMessage.Visible = true;


            cmdAnswearFirst.Text     = "Маневр сближения.";
            cmdAnswearSecond.Text    = "Маневр уклонения.";
            cmdAnswearSecond.Visible = true;
        }
Exemple #2
0
 private void cmdAnswearSecond_Click(object sender, EventArgs e)
 {
     DecisionResult = GameEventDecisionResult.TargetEvasionManeuver;
     Close();
 }