Hey guys I been working on a code in my combobox I got some items in it 3 languages english, french, and german I'm hoping when I press the apply button on my program all of the text changes in the form, though can't get it to work:
private void ApplyButtonOptions_Click(object sender, EventArgs e)
{
Properties.Settings.Default.Save();
if (comboBox1.SelectedItem.ToString() == "English")
{
comboBox1.SelectedItem = englishLanguage;
}
if (comboBox1.SelectedItem.ToString() == "German")
{
comboBox1.SelectedItem = GermanLanguage;
InputLanguage.CurrentInputLanguage = InputLanguage.FromCulture(new System.Globalization.CultureInfo("de"));
}
}