I am using dev express GridControl in my application to display data, GridControl itemsSource property is bound with ObservableCollection and columns are specified in xaml itself using below and AutoGenerateColumns property is set to None.
<dxg:GridControl.Columns>
<dxg:GridColumn>
We have one property in observablecollection which again is of List type and contains a list of items. So the requirement is to generate the columns for each element inside the list. The issue is the number of items in the list won't be constant so we will have to generate dynamic columns on the bases of items present in the list. Please help to provide some example showing how I can implement this using dev express grid.