Hi to all,
I'm not understand why if although I setted CurrentCultureInfo "it", I see completely translated my grid (ok), but a column that should show a currency with italian format, it shows currency in english format yet.
My codes in app.cs and column of gridview
private void Application_Startup(object sender, StartupEventArgs e){ Thread.CurrentThread.CurrentCulture = new CultureInfo("it"); Thread.CurrentThread.CurrentUICulture = new CultureInfo("it");
<telerik:GridViewDataColumn Header="Cambio" DataMemberBinding="{Binding Cambio, StringFormat=\{0:F4\}}" />