// Add the typed score to the team private void ScoreAddTextBox_KeyUp(object sender, KeyEventArgs e) { if (e.Key == Key.Enter && sender is TextBox txtbox) { string teamName = txtbox.Name.Split('_')[0]; int teamNumber = DefaultValues.TEAMNAMES.ToList().IndexOf(teamName); int score = ToInt(txtbox.Text); _gameBrain.AddScore(score, teamNumber); txtbox.Text = ""; UpdateAllWindows(); AddToScreenLog("ADDED " + score + " points for " + teamName); } }