I have following XAML, which displays collection of custom entities in stock DataGrid
control:
<DataGrid ItemsSource="{Binding AlgoVersionClipboard}" SelectedItem="{Binding SelectedClipboardVersion}">
<DataGrid.Columns>
<DataGridTextColumn IsReadOnly="True" Width="Auto" Header="Id" Binding="{Binding Model.OrderId}"/>
<DataGridTextColumn IsReadOnly="True" Width="*" Header="Title" Binding="{Binding Model.Order.Title}" />
<DataGridTextColumn IsReadOnly="True" Width="Auto" Header="Version Id" Binding="{Binding Model.Id}"/>
</DataGrid.Columns>
</DataGrid>
Now I want to try, how it will look in DataGridControl
from Extended WPF Toolkit.
Either I'm an idiot, or I can't use Google in right manner, or the documentation lacks. I can't find working sample, which will show complex paths in bindings and cell templating.
Could anyone "translate" this into XAML for DataGridControl
, or, even better, post a link to the demos, which will cover denoted questions?