This question is locked. New answers and comments are not allowed.
Hello,
we face the problem, that the RadGridView doesn´t recognize the CurrentCulture (German). In designer of Visual Studio the text of GroupPanel is in German as expected, but when starting the application, the text of GroupPanel is in English (see Attachments)
Even in the following simple example, it´s the same problem:
we face the problem, that the RadGridView doesn´t recognize the CurrentCulture (German). In designer of Visual Studio the text of GroupPanel is in German as expected, but when starting the application, the text of GroupPanel is in English (see Attachments)
Even in the following simple example, it´s the same problem:
<
telerik:RadGridView
x:Name
=
"AddressesResultGrid"
AutoGenerateColumns
=
"False"
ShowGroupPanel
=
"True"
RowIndicatorVisibility
=
"Collapsed"
CanUserDeleteRows
=
"False"
CanUserInsertRows
=
"False"
CanUserReorderColumns
=
"True"
CanUserSortColumns
=
"True"
IsReadOnly
=
"True"
Margin
=
"0,40,0,6"
>
<
telerik:RadGridView.Columns
>
<
telerik:GridViewDataColumn
DataMemberBinding
=
"{Binding CmpName}"
/>
<
telerik:GridViewDataColumn
DataMemberBinding
=
"{Binding Street}"
/>
<
telerik:GridViewDataColumn
DataMemberBinding
=
"{Binding Country}"
/>
<
telerik:GridViewDataColumn
DataMemberBinding
=
"{Binding Postcode}"
/>
<
telerik:GridViewDataColumn
DataMemberBinding
=
"{Binding City}"
/>
<
telerik:GridViewDataColumn
DataMemberBinding
=
"{Binding AddressNr}"
/>
</
telerik:RadGridView.Columns
>
</
telerik:RadGridView
>