Hey,
I'm using the TransitioningContentControl and getting an exception thrown somewhere inside InitializeComponent(). It states:
XamlParseException occurred
Failed to create a 'System.WindowsDependancyProperty' from the text IsEnabled.
XAML:
<layout:TransitioningContentControl x:Name="tcc"
Grid.Column="0"
Grid.Row="1"
HorizontalAlignment="Left"
VerticalAlignment="Center"
Content="Use buttons to change content">
<layout:TransitioningContentControl.ContentTemplate>
<DataTemplate>
<StackPanel >
<TextBlock
Text="{Binding Title }"
FontFamily="Georgia"
FontSize="14" />
<TextBlock Text="{Binding Author }"
FontFamily="Georgia"
FontSize="14" />
</StackPanel>
</DataTemplate>
</layout:TransitioningContentControl.ContentTemplate>
</layout:TransitioningContentControl>
I'm using the TransitioningContentControl and getting an exception thrown somewhere inside InitializeComponent(). It states:
XamlParseException occurred
Failed to create a 'System.WindowsDependancyProperty' from the text IsEnabled.
XAML:
<layout:TransitioningContentControl x:Name="tcc"
Grid.Column="0"
Grid.Row="1"
HorizontalAlignment="Left"
VerticalAlignment="Center"
Content="Use buttons to change content">
<layout:TransitioningContentControl.ContentTemplate>
<DataTemplate>
<StackPanel >
<TextBlock
Text="{Binding Title }"
FontFamily="Georgia"
FontSize="14" />
<TextBlock Text="{Binding Author }"
FontFamily="Georgia"
FontSize="14" />
</StackPanel>
</DataTemplate>
</layout:TransitioningContentControl.ContentTemplate>
</layout:TransitioningContentControl>