Windows 8のメトロアプリで1つのスタイル定義を理解する際に問題があります。"ListViewItemPlaceholderBackgroundThemeBrush"はどこにありますか?
あなたは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>
私がここで理解していないことは、静的なリソース定義があるが、例えばボーダー
Background="{StaticResource ListViewItemPlaceholderBackgroundThemeBrush}"
のためにそれはあなたがテンプレートと結合し、リソースを操作する方法に関するものではありません。
ここにあるListViewItemPlaceholderBackgroundThemeBrushがありますか?
ご協力いただきありがとうございます。
Dimi