tags:

views:

443

answers:

1

Can I use DisplayMemberBinding and still be able to define a DataTemplate for the Datatype of that column. As soon as I set the DisplayMemberBinding for a column that column ony can display simple text. But I don't want text :) But if I use Celltemplate all cells of that column use the same DataTemplate. But I don't want the same template for each cell.

A: 

If you want to dynamically choose the template based on the item, you will need to use a DataTemplateSelector:

<GridViewColumn CellTemplateSelector="{StaticResource MyCellTemplateSelector"/>

HTH, Kent

Kent Boogaart