What tag do we use to move a text in DataGrid Header to a new line?
E.g I have the following XAML code:
<Grid>
<DataGrid x:Name="Grid" ColumnHeaderHeight="80">
<DataGrid.Columns>
<DataGridTextColumn IsReadOnly="True" Header="Hodor" Width="100" />
</DataGrid.Columns>
</DataGrid>
</Grid>
What tag should I add and where?