This question is locked. New answers and comments are not allowed.
<DataTemplate x:Key="DataTempleteBuild" > <Grid Margin="0,0,0,19" toolkit:TiltEffect.IsTiltEnabled="True" Tap="BuildGridTap"> ...... </Grid></DataTemplate ><phone:PanoramaItem Header="cards"> <Grid Margin="12,0,0,0"> <ListBox Name="ListBuilds" ItemTemplate="{StaticResource DataTempleteBuild}" > </ListBox> </Grid> </phone:PanoramaItem>If I use Listbox, the toolkit:TiltEffect.IsTiltEnabled="True" does make effect ( when tap the item in the list, the item can
provide motion during manipulation).
However, once I replace the ListBox with RadDataBoundListBox, toolkit:TiltEffect.IsTiltEnabled="True" make no effect any more...