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 this.ContentTemplate (it does) yet when I call this...

var textBox = this.ContentTemplate.FindName("EditTextBox", this);

...it throws the following exception...

"This operation is valid only on elements that have this template applied."

Per a commenter in another related question, he said you're supposed to pass in the content presenter for the control, not the control itself, so I then tried this...

var cp = FindVisualChild<ContentPresenter>(this);

var textBox = this.ContentTemplate.FindName("EditTextBox", cp);

where FindVisualChild is just a helper function used in MSDN's example (see below) to find the associated content presenter. While 'cp' is found, it too throws the same error. I'm stumped!!

Here's the helper function for reference...

private childItem FindVisualChild<childItem>(DependencyObject obj)
    where childItem : DependencyObject
{
    for(int i = 0 ; i < VisualTreeHelper.GetChildrenCount(obj) ; i++)
    {
        DependencyObject child = VisualTreeHelper.GetChild(obj, i);
        if(child != null && child is childItem)
            return (childItem)child;
        else
        {
            childItem childOfChild = FindVisualChild<childItem>(child);
            if(childOfChild != null)
                return childOfChild;
        }
    }
    return null;
}

M

link|improve this question

70% accept rate
feedback

2 Answers

up vote 2 down vote accepted

As John pointed out, the OnContentTemplateChanged is being fired before it is actually applied to the underlying ContentPresenter. So you'd need to delay your call to FindName until it is applied. Something like:

protected override void OnContentTemplateChanged(DataTemplate oldContentTemplate, DataTemplate newContentTemplate) {
    base.OnContentTemplateChanged(oldContentTemplate, newContentTemplate);

    this.Dispatcher.BeginInvoke((Action)(() => {
        var cp = FindVisualChild<ContentPresenter>(this);
        var textBox = this.ContentTemplate.FindName("EditTextBox", cp) as TextBox;
        textBox.Text = "Found in OnContentTemplateChanged";
    }), DispatcherPriority.DataBind);
}

Alternatively, you may be able to attach a handler to the LayoutUpdated event of the UserControl, but this may fire more often than you want. This would also handle the cases of implicit DataTemplates though.

Something like this:

public UserControl1() {
    InitializeComponent();
    this.LayoutUpdated += new EventHandler(UserControl1_LayoutUpdated);
}

void UserControl1_LayoutUpdated(object sender, EventArgs e) {
    var cp = FindVisualChild<ContentPresenter>(this);
    var textBox = this.ContentTemplate.FindName("EditTextBox", cp) as TextBox;
    textBox.Text = "Found in UserControl1_LayoutUpdated";
}
link|improve this answer
Still don't agree with MS's naming of that function as if it hasn't yet been applied, then it really hasn't changed IMO (let alone how an almost identically named OnApplyTemplate you don't have to deal with this), but you get the 'Accept' since you gave me a code example that gives me what I want. – MarqueIV Apr 22 '11 at 2:30
feedback

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.

link|improve this answer
Then why on earth have that event? And it does say 'Changed' not 'Preview' or 'WillChange'. From what you said it actually hasn't yet changed. And the error is definitely misleading. (Also, again, I only tried the ContentPresenter thing per someone else. I'm using a UserControl so I'm not using a content presenter. I'm just swapping out the existing tags in the usercontrol with others via a template in the resources. As for what I'm trying to do, it's get one of the elements that's swapped in by that template, which I thought the code above would have shown. – MarqueIV Apr 16 '11 at 5:46
The way to achieve that that I came up with was to define a class-level variable to hold the control reference. I then attach a Loaded event to it via the template. Then in the code-behind, I simply store 'sender' in the variable. I then use the OnContentTemplateChanged call to set that variable to 'null'. It's a hacky thing, but it does work. Still, why have that above event where you're literally handed a template, but you can't do anything with it?! Makes no sense, especially since OnApplyTemplate does apply it. By that thought, this should too. – MarqueIV Apr 16 '11 at 5:48
You should look more closely at your visual tree at runtime using a tool like Snoop to better understand what is actually being rendered. UserControl is a ContentControl, which means it uses a ContentPresenter in its default template to display Content. The ContentTemplate is applied to that ContentPresenter through binding after it has been assigned to the ContentTemplate property on the UserControl. It's clear that you're trying to get EditTextBox, but why? Often you can get rid of the event code and use data binding instead. – John Bowen Apr 16 '11 at 13:09
Why are you talking about what's being rendered? I KNOW what's being rendered. The visual tree is fine, both before and after the swapping of the template. I know I can also get the control via the VisualTree, but again, not what I asked. I asked about that error. If that's throwing an error, then when is it safe to call that? As for the 'why' I need the textbox, that's off-topic, but yes, I do know about bindings, events I can wire up, etc. but that won't work here. And per your other comment... (ran out of room here...) – MarqueIV Apr 16 '11 at 22:00
"The ContentTemplate is applied to that ContentPresenter through binding after it has been assigned to the ContentTemplate property on the UserControl." then how can I detect that change?! By your own definition (and the controls) the ContentTemplate IS set to the control and thus that binding should have already been executed, so why doesn't FindName work? Why wouldn't that binding have already been updated by the time I've already executed base.OnContentTemplateChanged? Lemme ask it a different way. How can I get the textbox immediately when the content template changes the visual tree? – MarqueIV Apr 16 '11 at 22:07
feedback

Your Answer

 
or
required, but never shown

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