Control.GetTemplateChild method

Expand Minimize
This topic has not yet been rated - Rate this topic

Retrieves the named element in the instantiated ControlTemplate visual tree.

Syntax


protected DependencyObject GetTemplateChild(
  string childName
)

Parameters

childName

Type: System.String [.NET] | Platform::String [C++]

The name of the element to find.

Return value

Type: DependencyObject

The named element from the template, if the element is found. Can return null if no element with name childName was found in the template.

Remarks

You call GetTemplateChild to get references to objects in a controls Template after it's instantiated. The ControlTemplate is instantiated in the OnApplyTemplate method. You can use the GetTemplateChild method inside your OnApplyTemplate override and keep a reference to the objects you need.

Requirements

Minimum supported client

Windows 8

Minimum supported server

Windows Server 2012

Namespace

Windows.UI.Xaml.Controls
Windows::UI::Xaml::Controls [C++]

Metadata

Windows.winmd

See also

Control
OnApplyTemplate

 

 

Build date: 3/12/2013

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.