67

I'm trying to access a user control which is inside the control template of a content control. Specifically:

  <ContentControl x:Name="MyList" >
        <ContentControl.Template>
            <ControlTemplate x:Name="MyControlTemplate">
                <Border RenderTransformOrigin="0,0" x:Name="border">
                    <UserControls:MyControl x:Name="MyControlName" Width="100" ViewModel="{Binding}" />

I can access this.MyList but it says this.MyControlName is not found. How do I access the MyControlName object from code-behind in this situation?

Thanks!

H.B.
  • 166,899
  • 29
  • 327
  • 400
Locksleyu
  • 5,192
  • 8
  • 52
  • 77
  • 1
    I have the feeling you should rather tell what you are trying to achieve, odds are that you don't have to do what you are asking. – flq Nov 14 '11 at 19:05

2 Answers2

110

You need to get the template and locate the control by name on the templated control, something like:

var template = MyList.Template;
var myControl = (MyControl)template.FindName("MyControlName", MyList);

Templates are just that: Abstract descriptions of what is to be created, the controls in templates only exist in the context of something that is being templated.


Note that you should only ever access the elements within a control template if you are authoring the control that the template is for. Access from outside should be done via bound properties and methods.

For data templates this is similar. All the things you need to access should be bound to an object and access should then be through said object. This is especially true in cases of item controls which virtualize their items, so the elements do not even exist most of the time.

H.B.
  • 166,899
  • 29
  • 327
  • 400
  • EXCELLENT piece of work. Resolved my issue of accessing a control inside a `ControlTemplate` of `ContextMenu`. I spent hours trying to come up with a simpler solution than the several suggested online. Your two liner got me where I was trying to get. Thank you for sharing your knowledge and explaining it to readers like myself. – nam Jun 17 '21 at 14:52
24

U also can get control from every template by adding Loaded event in control and then in code assign sender of event to some variable.

Dawid Jablonski
  • 523
  • 4
  • 15