I am learning how to write a windows 8 app, and I can't find any answers to my problem.
I created a custom control where I am adding by a button click with:
onclick() {
card currentcard = new card();
...
...
hand.Children.add(currentCard);
}
in page.cs
The current card control has Generic.xaml information that looks like this containing a TextBlock
<Style TargetType="local:tile">
<Setter Property="VerticalAlignment" Value="Center"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="local:tile">
<Border
Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}">
<TextBlock x:Name="Label"/> // <----------------------- this textblock
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
What can I do to in page.cs or perhaps card.cs to get/set value of TextBlock named Label?
Sorry if this is elementary or answered somewhere before, I did searches, but I didn't find my answer!