I set up a ContentControl.DataTemplateSelector to my desired one.
I want that according to a command or whatever, call the ContentControl to reselect the template from the selector by either xaml or code.

Thank

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

I'm not aware of any (non-kludgy) way to do this: the DataTemplateSelector is called when WPF needs to select the template, and that's a one-off decision as far as WPF is concerned. (You can kludge it by making WPF think the content has changed, e.g. by setting the content to null and then back again -- I think that would work but haven't tested it -- but this is pretty ugly!) If there is a nice way to do this I too would be interested to know!

However, there is an alternative way to change how content is displayed that does update in response to data changes, and that is through triggers. You can use DataTriggers in your DataTemplate.Triggers collection to show and hide elements depending on the content data. To change the entire display, you could e.g. set up two renderings in a Grid, and use triggers to control which one is visible. You could even make your data template a ContentControl, and use a trigger to change the ContentTemplate. Of course this depends on the criteria for changing the template being bindable properties, which may not always be the case.

Here's some brief discussion of selectors vs. triggers, albeit in a slightly different context.

link|improve this answer
1  
I am having problems using it with DataTrigger, please take a look: stackoverflow.com/questions/2090148/… – Shimmy Jan 19 '10 at 0:27
feedback

Late to the party, I know. =)

When faced with this problem, I found it easiest to explicitly set a new TemplateSelector like

MyContentControl.ContentTemplateSelector =
     new MyDataTemplateSelector();
link|improve this answer
+1 it's never too late! unlike other posts, which are depressing, because they tell you that there is no way to do what you want!your solution works, and gave me a great idea, I'll post it in a bit, when I have time today. – denis morozov Apr 30 at 15:49
What I actually did, is storing every presenter that calls SelectTemplate (as a weak reference) in my DataTemplateSelector and provide a static method to refresh all these. – Jens May 11 at 19:13
nice! thank you again! – denis morozov May 11 at 19:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.