Hi everybody,
I'm doing most of my work with the DataGridControl in C# code and not in XAML.
So, creating a new DataGridControl in code:
Xceed.Wpf.DataGrid.
DataGridControl myGrid = new Xceed.Wpf.DataGrid.DataGridControl();
or
FrameworkElementFactory
fef_Grid = new FrameworkElementFactory(typeof(Xceed.Wpf.DataGrid.DataGridControl));
How do I hide/collapse the HierarchicalGroupByControl???
I am creating multiple grids, so I can't create a style in my main XAML file.
That would disable the HierarchicalGroupByControl on all my grids and not only
on those I want to.
Thanks,
Michael Nicolai-Deutschmann.