長方形オブジェクトの行を含むグリッドを持つメトロアプリがあります。すべての長方形を同時にアニメートしたいと思います(1秒で0から1までスケールします)。リソースを可能な限り使用し、コードの重複を避けたいと思います。グリッドの基本的なスケルトンは以下のとおりです。
<Grid>
<Grid.Resources>
<Style TargetType="Rectangle" x:Key="RectangleStyle">
<Setter Property="Height" Value="100"/>
<Setter Property="Width" Value="100"/>
<Setter Property="Margin" Value="10"/>
<Setter Property="RadiusX" Value="10"/>
<Setter Property="RadiusY" Value="10"/>
<Setter Property="RadiusY" Value="10"/>
<Setter Property="RenderTransform">
<Setter.Value>
<ScaleTransform x:Name="RectangleScaleTransform" ScaleX="1" ScaleY="1" />
</Setter.Value>
</Setter>
</Style>
</Grid.Resources>
<Grid.Triggers>
<EventTrigger RoutedEvent="Rectangle.Loaded">
<BeginStoryboard>
<Storyboard>
<DoubleAnimation Storyboard.TargetName="RectangleScaleTransform"
Storyboard.TargetProperty="(ScaleTransform.ScaleX)" From="0" To="1.0" Duration="0:0:1" />
</Storyboard>
</BeginStoryboard>
</EventTrigger>
<EventTrigger RoutedEvent="Rectangle.Loaded">
<BeginStoryboard>
<Storyboard>
<DoubleAnimation Storyboard.TargetName="RectangleScaleTransform"
Storyboard.TargetProperty="(ScaleTransform.ScaleY)" From="0" To="1.0" Duration="0:0:1" />
</Storyboard>
</BeginStoryboard>
</EventTrigger>
</Grid.Triggers>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Rectangle Fill="Red" Grid.Row="0" Grid.Column="0" Style="{StaticResource RectangleStyle}" />
<Rectangle Fill="Red" Grid.Row="0" Grid.Column="1" Style="{StaticResource RectangleStyle}" />
<Rectangle Fill="Red" Grid.Row="0" Grid.Column="2" Style="{StaticResource RectangleStyle}"/>
<Rectangle Fill="Red" Grid.Row="0" Grid.Column="3" Style="{StaticResource RectangleStyle}"/>
<Rectangle Fill="Red" Grid.Row="0" Grid.Column="4" Style="{StaticResource RectangleStyle}"/>
<Rectangle Fill="Red" Grid.Row="0" Grid.Column="5" Style="{StaticResource RectangleStyle}"/>
<Rectangle Fill="Red" Grid.Row="0" Grid.Column="6" Style="{StaticResource RectangleStyle}"/>
<Rectangle Fill="Red" Grid.Row="0" Grid.Column="7" Style="{StaticResource RectangleStyle}"/>
</Grid>
</Grid>
RenderTransform
個々の長方形に追加する必要はありません。また、各長方形の三角形にトリガーを追加する必要もありません。これは、多くの重複があるように思われるためです。上記のコードでCannot resolve TargetName "RectangleScaleTransform
エラーが発生します。
どんな助けでも素晴らしいでしょう。