I have created Windows Form Program in C#. I have some problems with localization. I have resource files in 3 languages. I want to click each language button and change lang
You will need to reload the controls for it to reflect the New culture values
ComponentResourceManager resources = new ComponentResourceManager(typeof(Form1));
and then you would have to apply for each control using resources.ApplyResources
resources.ApplyResources
Please have a look here