Ok... this has me stumped. I\'ve overridden OnContentTemplateChanged in my UserControl. I\'m checking that the value passed in for newContentTemplate does in fact equal th
The ContentTemplate isn't applied to the ContentPresenter until after that event. While the ContentTemplate property is set on the control at that point, it hasn't been pushed down to bindings internal to the ControlTemplate, like the ContentPresenter's ContentTemplate.
What are you ultimately trying to do with the ContentTemplate? There might be a better overall approach to reach your end goal.