, , .Net. ,
, ,
, , case.here: -
void AskForACountry()
{
frmEdit = new Form();
frmEdit.ShowIcon = false;
cmbxLang = new ComboBox();
frmEdit.Size = new Size(199, 113);
Button btnSetLang = new Button();
btnSetLang.Size = new Size(88, 23);
btnSetLang.Text = "Set Language";
btnSetLang.Location = new Point(40, 39);
cmbxLang.Location = new Point(28, 12);
cmbxLang.DropDownStyle = ComboBoxStyle.DropDownList;
String[] arrayCountry = { "Catalan - Spain", "Chinese - China", "Chinese - Hong Kong", "Chinese - Taiwan", "Danish - Denmark", "Dutch - Netherlands", "English - Australia", "English - Canada", "English - Great Britain", "English - US", "Finnish - Finland", "French - Canada", "French - France", "German - Germany", "Italian - Italy", "Japanese - Japan", "Korean - Korea", "Norwegian - Norway", "Polish - Poland", "Portuguese - Brazil", "Portuguese - Portugal", "Russian - Russia", "Spanish - Mexico", "Spanish - Spain", "Swedish - Sweden" };
cmbxLang.DataSource = arrayCountry.ToList();
btnSetLang.Click += new EventHandler(btnSetLang_Click);
frmEdit.Controls.Add(cmbxLang);
frmEdit.Controls.Add(btnSetLang);
MessageBox.Show("Please select a country that fits your computer default language and dialect.", "Select A Country");
frmEdit.StartPosition = FormStartPosition.CenterScreen;
frmEdit.AcceptButton = btnSetLang;
frmEdit.ShowDialog();
}