Windows8メトロアプリの1つのスタイル定義を理解するのに問題があります。
VSでメトロスタイルのアプリケーションを作成すると、という名前のフォルダーもあります
一般
作成した。このフォルダの中には、というファイルがあります
StandardStyles.xaml
これで、次のスニペットがこのファイルからのものになります。
<!-- Grid-appropriate 250 pixel square item template as seen in the GroupedItemsPage and ItemsPage -->
<DataTemplate x:Key="Standard250x250ItemTemplate">
<Grid HorizontalAlignment="Left" Width="250" Height="250">
<Border Background="{StaticResource ListViewItemPlaceholderBackgroundThemeBrush}">
<Image Source="{Binding Image}" Stretch="UniformToFill"/>
</Border>
<StackPanel VerticalAlignment="Bottom" Background="{StaticResource ListViewItemOverlayBackgroundThemeBrush}">
<TextBlock Text="{Binding Title}" Foreground="{StaticResource ListViewItemOverlayForegroundThemeBrush}" Style="{StaticResource TitleTextStyle}" Height="60" Margin="15,0,15,0"/>
<TextBlock Text="{Binding Subtitle}" Foreground="{StaticResource ListViewItemOverlaySecondaryForegroundThemeBrush}" Style="{StaticResource CaptionTextStyle}" TextWrapping="NoWrap" Margin="15,0,15,10"/>
</StackPanel>
</Grid>
</DataTemplate>
ここで私が理解していないのは、静的リソースの定義です。たとえば、Borderの場合です。
Background="{StaticResource ListViewItemPlaceholderBackgroundThemeBrush}"
テンプレートやバインディング、リソースをどのように扱うかではありません。
このListViewItemPlaceholderBackgroundThemeBrushはどこにありますか?
助けてくれて本当にありがとうございます。
ディミ