Hi,
To localize the "Drag column here to group by column..." text, the idea is to define your own FixedHeader and to set the GroupByControl.NoGroupContent :
To localize the "Drag column here to group by column..." text, the idea is to define your own FixedHeader and to set the GroupByControl.NoGroupContent :
<xcdg:DataGridControl x:Name="_datagrid">
<xcdg:DataGridControl.View>
<xcdg:TableflowView UseDefaultHeadersFooters="False">
<xcdg:TableflowView.FixedHeaders>
<DataTemplate>
<StackPanel>
<xcdg:GroupByControl x:Name="groupByControl"
NoGroupContent="Enter Localize text here" />
<xcdg:ColumnManagerRow />
</StackPanel>
</DataTemplate>
</xcdg:TableflowView.FixedHeaders>
</xcdg:TableflowView>
</xcdg:DataGridControl.View>
</xcdg:DataGridControl>