我用一个scrollviewer写了一个xaml,并在一个帧内替换了scrollviewer。我想为框架注册ManipulationDelta事件,但我失败了。如果可以在Windows Phone 8中的scrollviewer控件之外注册ManipulationDelta事件?
<Grid>
<Frame ManipulationDelta="Frame_ManipulationDelta">
<ScrollViewer>
<StackPanel>
<ListView x:Name="List">
<ListView.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding}"/>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
<ListView x:Name="List2">
<ListView.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding}" Foreground="Blue"/>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</StackPanel>
</ScrollViewer>
</Frame>
</Grid>