FindChild()

For a Frame object named Frame1, containing a Button object named myButton, use the following syntax:

var childFound = Frame1.FindChild("myButton")
// or
var childFound = this.FindChild("myButton")

Close