Search code examples
wpfdatagridexpression-blendexpression

How to hide the Column header in a WPF DataGrid?


I am using a DataGrid in Expression Blend but I just need to show only the registries and hide the ColumnHeader.

How do I do that?


Solution

  • In the DataGrid there is a Header section where the field Header Visibility could be set to None.

    Or in xaml for the Datagrid add the property

    HeadersVisibility="None"