I am getting the following when I type <StoryBoard> in XAML:
StoryBoard not supported in a Windows App Project.
I started the project as follow:
New Project > Templates > Visual C# > Windows > Windows 8 > Windows > Blank App (Windows 8.1)
Here is the MainPage.xaml:
<Page
x:Class="TestApp.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:TestApp"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<Grid>
<StoryBoard></StoryBoard>
</Grid>
First intellisense does not show StoryBoard and when I added the tag anyway the IDE shows line below the tags indicating that the tag is not supported.
Do I need to add an external reference?