לדוגמא
Grid grid = new Grid();
Button buton = new Button();
grid.Children.Add(buton);
var chld = VisualTreeHelper.GetChild(grid, 0);
//אפשר גם כך
//var chld = grid.Children[0];
var prnt = VisualTreeHelper.GetParent(buton);
//אפשר גם כך
// var prnt = buton.Parent;
string strprnt = (prnt == null ? "" : prnt.ToString());
string strchld = (chld == null ? "" : chld.ToString());
//return strprnt = "" ,
//strchld = "Windows.UI.Xaml.Controls.Button"
הוא מציג בהורה ריק ובילד מציג את הלחצן.