The standard color names are English names, normal. But my application is German, so I would like to have the color names in my ComboBox as German names. Instead of Blue, Yellow, etc. I would like to have "Blau", "Gelb", etc.
Is there a function that returns all localized names? Or is it easy to change the culture in this challenge?
<ObjectDataProvider MethodName="GetType" ObjectType="{x:Type sys:Type}" x:Key="colorsTypeOdp"> <ObjectDataProvider.MethodParameters> <sys:String>System.Windows.Media.Colors, PresentationCore, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35</sys:String> </ObjectDataProvider.MethodParameters> </ObjectDataProvider>
source share