テンプレートを使用している gridView があります。これらのレイヤーを非表示および表示するために、C# 内で「shadowText」にアクセスするにはどうすればよいですか?
MainPage.xaml から取得
<GridView x:Name="imagesGrid"
ItemTemplate="{StaticResource MemeTemplate}" ItemsSource="{Binding}" ItemClick="imagesGrid_ItemClick" IsItemClickEnabled="True" Margin="323,165,91,54" Grid.ColumnSpan="2">
<GridView.ItemsPanel>
<ItemsPanelTemplate>
<WrapGrid MaximumRowsOrColumns="3"
VerticalChildrenAlignment="Top" HorizontalChildrenAlignment="Center" />
</ItemsPanelTemplate>
</GridView.ItemsPanel>
</GridView>
app.xaml から取得
<DataTemplate x:Key="MemeTemplate">
<Grid Background="#FF939598" Height="250" Width="250">
<Image Source="{Binding ImageBitmap}" Stretch="UniformToFill"/>
<StackPanel Name="shadowText" Orientation="Vertical" Background="#CC000000" Height="50" VerticalAlignment="Bottom">
<TextBlock
Name="memeCategory" Text="{Binding DisplayName}"
Margin="10,3,0,0" Width="120" Height="20"
TextTrimming="WordEllipsis" HorizontalAlignment="Left"/>
</StackPanel>
</Grid>
</DataTemplate>