XAML でアニメーションをテストしようとしています。私の意図は、フォントサイズのパルスを作成することでした(永遠に増減します)。しかし、以下のコードを入力すると、Visual Studio は class を認識しませんDoubleAnimation
。私は何を間違っていますか?
<Window x:Class="testingAnimation.MainWindow"
xmlns="http://schemas.microsoft.com/netfx/2007/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<StackPanel>
<TextBlock Text="HELLO">
<TextBlock.FontSize>
<DoubleAnimation />
</TextBlock.FontSize>
</TextBlock>
</StackPanel>
</Window>