次のXAMLグリッドがあります。
<Grid Style="{StaticResource LayoutRootStyle}" x:Name="mainGrid">
<Grid.Resources>
<Storyboard x:Name="FadeOut">
<DoubleAnimation Duration="3" To="0.0" Storyboard.TargetProperty="Opacity" Storyboard.TargetName="gridBackgroundImageBrush" d:IsOptimized="True"/>
</Storyboard>
<Storyboard x:Name="FadeIn">
<DoubleAnimation Duration="3" To="0.35" Storyboard.TargetProperty="Opacity" Storyboard.TargetName="gridBackgroundImageBrush" d:IsOptimized="True"/>
</Storyboard>
</Grid.Resources>
<Grid.Background>
<ImageBrush x:Name="gridBackgroundImageBrush" ImageSource="{Binding BackgroundImage}" Opacity="0.35">
</ImageBrush>
</Grid.Background>
プログラムで「FadeOut」アニメーションを開始し、ImageBrushからImageを変更してから、次のように「FadeIn」アニメーションを開始します。
private void t_Tick(object sender, object e)
{
try
{
FadeOut.Begin();
this.DefaultViewModel["BackgroundImage"] = BackgroundImage;
FadeIn.Begin();
}
catch { }
}
ただし、画像はアニメーションなしで変化しています。問題は、ImageBrushの「Opacity」プロパティにアクセスする方法にあると思います。TargetProperty属性に対して次の構文を試しました。
(Control.Background).(ImageBrush.Opacity)
msdnがここに示すように:http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.media.animation.storyboard.settargetproperty.aspxですが、機能していないようです。誰かがこの問題で私を助けることができますか?