BaconGame.GameMainForm.comboBoxCorrectAnswer_SelectedIndexChanged C# (CSharp) Method

comboBoxCorrectAnswer_SelectedIndexChanged() private method

Occurs when the combo box's index gets changes. Updates the answer in the question view.
private comboBoxCorrectAnswer_SelectedIndexChanged ( object sender, System e ) : void
sender object
e System
return void
        private void comboBoxCorrectAnswer_SelectedIndexChanged(object sender, System.EventArgs e)
        {
            if (questionView.SelectedItems.Count > 0)
                _presenter.UpdateAnswer();
        }