<Button Name="B1">
<Grid>
<Label/>
<Label/>
</Grid>
</Button>
<Button Name="B2">
<Grid>
<Label/>
<Label/>
</Grid>
</Button>
<Button Name="B3">
<Grid>
<Label/>
<Label/>
</Grid>
</Button>
How can I access B2 Label 2 without using a name attribute. Something like that:
B2.Children[0].Children[1].Content = "Thank You <3"