Changing Globalization CultureInfo

  • Thread starter Thread starter Alvaro E. Gonzalez V.
  • Start date Start date
A

Alvaro E. Gonzalez V.

Hello everybody;

Somebody has a simple example of like applying to the change of
Globalization to an application MDI with children windows already
opened?

HEY!!: That "located" properties of my controls automatically change
when changing the current culture.

Thanks

Alvaro

PD: I'm using C# language.
 
Somebody has a simple example of like applying to the change of
Globalization to an application MDI with children windows already
opened?
I'm not sure but you could try this:

Thread.CurrentThread.CurrentCulture = new CultureInfo("en-us");
Thread.CurrentThread.CurrentUICulture = new CultureInfo("en-us");
HEY!!: That "located" properties of my controls automatically change
when changing the current culture.
Again not sure, but I think controls don't have a culture property. The
culture is set at thread level.

The "Location" property says where a control is positioned in the screen.

Greetings,
Wessel
 
Back
Top