Hello,
Now I'm working on localization about DataGrid. And I'm using WPF Localization Extension for multi-language supporting.
At this time I need to change texts for each headers, but It doesn't work.
Below is my code for localization.
In the above code, {lex:Loc LINETOTAL} means multi-lange ID for Localization. The text of Column header should changed to above text which is linked to LINETOTAL.
But the header text is not showing.
Can you help me out for this problem?
Thank you.
Now I'm working on localization about DataGrid. And I'm using WPF Localization Extension for multi-language supporting.
At this time I need to change texts for each headers, but It doesn't work.
Below is my code for localization.
<telerik:GridViewDataColumn DataMemberBinding="{Binding}" HeaderCellStyle="{StaticResource GridViewHeaderCellBasic}"> <telerik:GridViewDataColumn.Header> <TextBlock Text="{lex:Loc LINETOTAL}" TextWrapping="Wrap" /> </telerik:GridViewDataColumn.Header></telerik:GridViewDataColumn>In the above code, {lex:Loc LINETOTAL} means multi-lange ID for Localization. The text of Column header should changed to above text which is linked to LINETOTAL.
But the header text is not showing.
Can you help me out for this problem?
Thank you.