Posted 10 April 2018, 7:31 am EST
Hi,
For the WPF Data Grid control it is possible to programmatically turn on Text Wrapping for the rows of data:
foreach (var L_objColumn in M_dgComOne.Columns)
{
// Allow Text to wrap
((C1.WPF.DataGrid.DataGridBoundColumn)L_objColumn).TextWrapping = System.Windows.TextWrapping.Wrap;
}
How can I do the same for the Column Headers? The Columns are auto-generated by assigning a Data table created from an SQL Query to the Data Grid’s Item Source:
M_dgComOne.ItemsSource = M_datGridDataTable.AsDataView();
Therefore I can’t implement Text Wrapping in the XAML files.
Any help appreciated.