Control.GetTemplateChild(String) メソッド

定義

インスタンス化された ControlTemplate ビジュアル ツリー内の名前付き要素を取得します。

protected:
 virtual DependencyObject ^ GetTemplateChild(Platform::String ^ childName) = GetTemplateChild;
DependencyObject GetTemplateChild(winrt::hstring const& childName);
protected DependencyObject GetTemplateChild(string childName);
function getTemplateChild(childName)
Protected Function GetTemplateChild (childName As String) As DependencyObject

パラメーター

childName
String

Platform::String

winrt::hstring

検索する要素の名前。

戻り値

要素が見つかった場合は、テンプレートの名前付き要素。 テンプレートで childName という名前の要素が見つからなかった場合は null を返すことができます。

注釈

インスタンス化された後、GetTemplateChild を呼び出して、コントロール テンプレート 内のオブジェクトへの参照を取得します。 ControlTemplateOnApplyTemplate メソッドでインスタンス化されます。 OnApplyTemplate オーバーライド内で GetTemplateChild メソッドを使用し、必要なオブジェクトへの参照を保持できます。

適用対象

こちらもご覧ください