だから私はこのXAMLを持っています:
<ListBox Height="626" HorizontalAlignment="Left" Margin="6,6,0,0" Name="ItemList" VerticalAlignment="Top" Width="444">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Vertical">
<Grid Height="50">
<Grid.Resources>
<Storyboard x:Name="ItemCountBGImageShow">
<DoubleAnimation Storyboard.TargetName="ItemCountBGImage"
Storyboard.TargetProperty="Opacity"
From="0" To="100" Duration="0:0:0.3" />
</Storyboard>
</Grid.Resources>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="31" />
<ColumnDefinition Width="300" />
<ColumnDefinition Width="100" />
</Grid.ColumnDefinitions>
<Image Opacity="0" Grid.ColumnSpan="1" Name="ItemCountBGImage" Width="31" Height="31" Source="/CafeKonto.wp7;component/Images/table_quantity.png" />
<TextBlock Grid.ColumnSpan="2" FontSize="25" Name="ItemName" Foreground="White" Tap="ItemName_Tap" Text="{Binding ItemName}" Margin="35,0,0,0" />
<TextBlock Grid.ColumnSpan="3" TextAlignment="Right" FontSize="25" Name="ItemPrice" Foreground="White" Text="{Binding ItemPriceFormated}" />
</Grid>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
私の問題は、C# からアニメーションを開始できないことです。ItemCountBGImageShow はコード ビハインドでは表示されません。ここで何が間違っていますか?