如何在Windows Phone 8中的ScrollViewer之外启用ManipulationDelta事件?

时间:2014-10-14 07:46:26

标签: c# wpf xaml windows-phone windows-phone-8.1

我用一个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>

0 个答案:

没有答案