For lesson 10, page 81 step 10. I get the following error...
A value of type 'MultiTouchManipulationBehavior' cannot be added to a collection or dictionary of type 'BehaviorCollection'.
I thought I typed it in wrong at first, so I downloaded the code from this web site and I still get the error.
Anyone have any ideas of what I am doing wrong? I have been an ASP.net developer since 2002, but I am new to XAML.
Code:
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
<Image Height="272" HorizontalAlignment="Left" Margin="40,48,0,0"
Name="image1" Stretch="Fill" VerticalAlignment="Top" Width="350"
Source="/HelloWindowsPhoneLesson10;component/Images/Dog-pug.jpg" >
<i:Interaction.Behaviors>
<mt:MultiTouchManipulationBehavior IsInertiaEnabled="True"
IsRotateEnabled="True" IsTranslateEnabled="False"
IsScaleEnabled="True" MinimumScaleRadius="60"
MaximumScaleRadius="360"/>
</i:Interaction.Behavior
</Image>
</Grid>