方法 : グロー効果をアニメーション化する
更新 : 2007 年 11 月
ここでは、OuterGlowBitmapEffect の GlowSize プロパティをアニメーション化する方法について説明します。
使用例
次の例では、OuterGlowBitmapEffect の GlowSize プロパティの変更をアニメーション化します。その結果、TextBox にフォーカスが移ると、グローは外側にアニメーション化されます。
<Page xmlns="https://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="https://schemas.microsoft.com/winfx/2006/xaml" >
<StackPanel>
<TextBox Width="200">
<TextBox.BitmapEffect>
<!-- This BitmapEffect is targeted by the animation. -->
<OuterGlowBitmapEffect x:Name="myOuterGlowBitmapEffect"
GlowColor="Blue" GlowSize="0" />
</TextBox.BitmapEffect>
<TextBox.Triggers>
<EventTrigger RoutedEvent="TextBox.GotFocus">
<BeginStoryboard>
<Storyboard>
<!-- Animate the GlowSize from 0 to 40 over half a second. -->
<DoubleAnimation
Storyboard.TargetName="myOuterGlowBitmapEffect"
Storyboard.TargetProperty="GlowSize"
From="0" To="40" Duration="0:0:0.5" />
</Storyboard>
</BeginStoryboard>
</EventTrigger>
</TextBox.Triggers>
</TextBox>
</StackPanel>
</Page>
サンプル全体については、「ビットマップ効果ギャラリーのサンプル」を参照してください。