Saturday, October 10, 2015

Access TemplatedElements in CustomControl

How to access TemplatedElements in CustomControl?
Override OnApplyTemplate in the .cs file. Its called everytime a template is applied to a control

public override void OnApplyTenplate()
{
base.OnApplyTemplate();

var textblock= GetTemplateChild("Name Of Part") as TextBlock;

textblock.Text="hello";
}

No comments:

Post a Comment