将图像添加到Pivot页面的标题并处理触摸

时间:2014-06-26 09:11:42

标签: windows-phone-8 windows-phone touch gesture

我正在尝试在枢轴控制标题旁边添加图像,我希望能够触摸它。但我不能这样,因为枢轴正在处理触摸。这是我的代码:

    <Grid Margin="162,22,0,0" VerticalAlignment="Top" HorizontalAlignment="Left"
          Tap="MessagesIcon_OnTap">
          <Image Source="/Assets/Images/Icons/messages_icon.png" 
                 x:Name="MessagesIcon"
                 Stretch="Fill" Opacity="1" Width="20" Height="22"
                 Tap="MessagesIcon_OnTap"/>
    </Grid>
    <phone:Pivot x:Name="PlayerPivot" Title="TITLE" >
        <!--Pivot item one-->
        <phone:PivotItem Margin="0" x:Name="PlayingPivotItem">
            <phone:PivotItem.Header>
                <TextBlock Text="subtitle" />
            </phone:PivotItem.Header>
            <Grid x:Name="ContentPanel">
                     ...

正如你所看到的那样,我试图抓住两个(网格包含图像和图像),但它没有调用。在图像上获取轻击手势的最简单方法是什么?感谢

1 个答案:

答案 0 :(得分:1)

尝试使用此代码段:

<controls:Pivot.Title>  
<StackPanel>                   
<TextBlock Text="title" />     
<Image Source="/Images/anyimage.png"/>              
</StackPanel>           
</controls:Pivot.Title>