I have been trying for quite a while to find a way to set the culture of only a single view and/or its viewmodel.
to date i have used:
System.Globalization.CultureInfo NewCulture = new System.Globalization.CultureInfo("en-US");
Thread.CurrentThread.CurrentCulture = NewCulture;
which has given me Reasonably good success.
BUT, it sets the culture of the entire thread.(I MAY NOT have this).
it must not touch the culture of the thread.
QUESTION
Do you know of any other way for me to set the culture of a view/viewmodel to en-US?
It must not set the culture of the thread, and it must not set the culture of any other views or their viewmodels, only the view and viewmodels that i have chosen.