我的 Page.Resources 中有一个 DataTemplate,它有一个 TextBlock,其中文本值绑定到数据库。是否可以在后面的代码中重用 TextBlock 控件?我想将 ID 传递给另一个页面。(Win RT windows 8 app c#)
<Page.Resources>
<DataTemplate x:Key="Customized">
<TextBlock x:Name="TextId" Text="{Binding Id}"/>
</DataTemplate>
</Page.Resouces>
后面的代码:
TextId.Text = "test";
错误:
当前上下文中不存在名称“TextId”。