1

嘿伙计们,我的 Windows phone 8 应用程序中有一个页面,每当我进入该页面时,如果我在任何 ListBox 项目上单击太快,它都不会检测到点击,所以我必须重新点击一次或两次以上才能检测到触摸,有时甚至返回需要在返回按钮(在手机上)上轻按一次以上。这是xaml。

 <!--ContentPanel - place additional content here-->
    <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
        <ListBox x:Name="LocationsList" ItemsSource="{Binding Venues}" toolkit:TurnstileFeatherEffect.FeatheringIndex="2" SelectionChanged="LocationsList_SelectionChanged" >
            <ListBox.ItemTemplate>
                <DataTemplate>
                    <StackPanel Margin="0,0,0,17" Width="432">
                        <TextBlock Text="{Binding Name}" TextWrapping="Wrap" Style="{StaticResource PhoneTextExtraLargeStyle}"/>
                        <TextBlock Text="{Binding Address}" TextWrapping="Wrap" Margin="12,-6,12,0" Style="{StaticResource PhoneTextAccentStyle}"/>
                    </StackPanel>
                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox>
    </Grid>
    </Grid>
4

1 回答 1

0

尝试使用 Tap 属性和 LongListSelector。

xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"

<phone:LongListSelector Tap="OnSeleted">

不确定后退键。在覆盖的函数中放置一个断点,以确保每次按下返回键时都会调用它:

protected override void OnBackKeyPress(System.ComponentModel.CancelEventArgs e)
{
   base.OnBackKeyPress(e);
}
于 2013-04-27T05:49:22.200 回答