我正在学习如何编写 Windows 8 应用程序,但我找不到任何问题的答案。
我创建了一个自定义控件,通过单击按钮添加:
onclick() {
card currentcard = new card();
...
...
hand.Children.add(currentCard);
}
在 page.cs
当前的卡控件具有如下所示的 Generic.xaml 信息,其中包含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>
我可以在 page.cs 或 card.cs 中做什么来获取/设置TextBlock
命名标签的值?
抱歉,如果这是基本的或以前在某个地方回答过的问题,我进行了搜索,但没有找到答案!