How do I localize the number format used in RadGridView for double to German culture (1.23 is written in German culture 1,23)?
Take a very simple RadGridView like in the "Getting Started" example for RadGridView (http://www.telerik.com/help/wpf/gridview-getting-started2.html).
On a clean new VS2010 Telerik RadControls project on my German Win7 machine, the header block ("Drag a column header and drop it here ...") is displayed correctly in German ("Ziehen Sie einen Spaltenkopf auf diese Fläche ..."), but cells of columns that represent a property of type double will not work correctly with German culture. When I enter e.g. the German value half (0,5) it will be interpreted as five (5).
How do I change this?
I already tried
Take a very simple RadGridView like in the "Getting Started" example for RadGridView (http://www.telerik.com/help/wpf/gridview-getting-started2.html).
On a clean new VS2010 Telerik RadControls project on my German Win7 machine, the header block ("Drag a column header and drop it here ...") is displayed correctly in German ("Ziehen Sie einen Spaltenkopf auf diese Fläche ..."), but cells of columns that represent a property of type double will not work correctly with German culture. When I enter e.g. the German value half (0,5) it will be interpreted as five (5).
How do I change this?
I already tried
InitializeComponent(); LocalizationManager.DefaultCulture = new System.Globalization.CultureInfo("de");
But it does not work...