Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.