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
|
I set up a ContentControl.DataTemplateSelector to my desired one. Thank
| ||||
|
feedback
|
|
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 Here's some brief discussion of selectors vs. triggers, albeit in a slightly different context. | |||||
feedback
|
|
Late to the party, I know. =) When faced with this problem, I found it easiest to explicitly set a new TemplateSelector like
| |||||||
feedback
|