我有我的 xaml 如下
<Button>
<Button.ContentTemplate>
<DataTemplate>
<TextBlock x:Name="firstBlock"/>
</DataTemplate>
</Button.ContentTemplate>
</Button>
问题是我不能在代码中使用 TextBlock。它给出了错误
当前上下文中不存在名称“firstBlock”
我有我的 xaml 如下
<Button>
<Button.ContentTemplate>
<DataTemplate>
<TextBlock x:Name="firstBlock"/>
</DataTemplate>
</Button.ContentTemplate>
</Button>
问题是我不能在代码中使用 TextBlock。它给出了错误
当前上下文中不存在名称“firstBlock”