This question is locked. New answers and comments are not allowed.
Everything works fine, but RadDataBoundListBox_ItemTap is not invoked when an item is tapped. Instead, RadDataBoundListBox_Tap is invoked. Could anyone shed some light on this?
<telerikPrimitives:RadExpanderControl.ExpandableContentTemplate>
<DataTemplate>
<Grid Margin="0,0,0,24">
<telerikPrimitives:RadDataBoundListBox ItemsSource="{Binding Items}" IsHitTestVisible="True" ItemTap="RadDataBoundListBox_ItemTap" Tap="RadDataBoundListBox_Tap">
<telerikPrimitives:RadDataBoundListBox.ItemTemplate>
<DataTemplate>
<Grid Margin="37,6">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<!--<Image Width="87" Height="87" Source="{Binding ImageThumbnailSource}"/>-->
<StackPanel Grid.Column="1">
<Button Margin="12,-9,12,0" Grid.Column="1" Content="{Binding Title}" Tag="{Binding Information}" FontFamily="Segoe WP SemiLight" FontSize="{StaticResource PhoneFontSizeLarge}" Foreground="{StaticResource PhoneForegroundBrush}" Click="Button_Click"/>
<!--<TextBlock Margin="12,0" Grid.Column="1" Text="{Binding Information}" TextWrapping="Wrap" Foreground="{StaticResource PhoneForegroundBrush}"/>-->
</StackPanel>
</Grid>
</DataTemplate>
</telerikPrimitives:RadDataBoundListBox.ItemTemplate>
</telerikPrimitives:RadDataBoundListBox>
</Grid>
</DataTemplate>
</telerikPrimitives:RadExpanderControl.ExpandableContentTemplate>