/ Published in: C#
Expand |
Embed | Plain Text
using System; using System.Windows.Forms; using System.Diagnostics; namespace EnumWithCombo { public partial class PlayerSelectionForm : Form { private enum Players { Gibbs, Richards, Cronje, Kirsten, Kallis, Smith, Villiers, Pollock, Ntini, Klusener, Steyn, Rhodes, Bosman, Kemp, Botha, Harris, Roelof } private string url = "http://www.cricinfo.com/ci/content/player/45224.html"; public PlayerSelectionForm() { InitializeComponent(); } private void submitButton_Click(object sender, EventArgs e) { switch ((Players)playersComboBox.SelectedItem) { case Players.Gibbs: break; default: MessageBox.Show(((Players)playersComboBox.SelectedItem).ToString()); break; } } } }
You need to login to post a comment.
