How to display a control in culture different from content culture (e.g. because of different DateTime format)
You could change the culture of thread in the code behind. The code could look like this: System.Globalization.CultureInfo ci = new System.Globalization.CultureInfo("en-US"); Thread.CurrentThread.CurrentCulture = ci;
Please, sign in to be able to submit a new answer.