Button 在我的windowsphone8应用程序中有一些图像,当有人单击该图像的缩略图时,我希望显示这些图像

Button 在我的windowsphone8应用程序中有一些图像,当有人单击该图像的缩略图时,我希望显示这些图像,button,windows-phone-8,click,Button,Windows Phone 8,Click,我用按钮来显示图像的缩略图 <phone:PanoramaItem Header="gallery" Orientation="Horizontal" Foreground="#FFD8D36D" Height="611"> <!--Double wide Panorama with large image placeholders--> <ScrollViewer Margin="0,4,16,37" > <StackPanel O

我用按钮来显示图像的缩略图

<phone:PanoramaItem Header="gallery" Orientation="Horizontal" Foreground="#FFD8D36D" Height="611">
  <!--Double wide Panorama with large image placeholders-->
  <ScrollViewer Margin="0,4,16,37" >
      <StackPanel Orientation="Vertical" Height="878" Width="404" RenderTransformOrigin="0.491,0.995">

         <StackPanel HorizontalAlignment="Left" Orientation="Horizontal">
              <Button Height="120" Width="120" Margin="12,0,0,0" Click="Button_Click_3">
                <Button.Background>
                    <ImageBrush Stretch="UniformToFill" ImageSource="/gallery/1.png"/>
                </Button.Background>
              </Button>
              <Button Height="120" Width="120" Margin="12,0,0,0">
                <Button.Background>
                   <ImageBrush Stretch="UniformToFill" ImageSource="/gallery/2.png"/>
                 </Button.Background>
              </Button>
        </StackPanel>


问题是什么?问题还是太广泛了。您希望在新页面中如何显示图像?如果是这种情况,在哪一部分你有麻烦:1。如何导航到新页面?2.如何将一些数据(如单击图像的路径)传递到新页面?3.如何在WP中显示图像?我希望在单击按钮时显示图像(与默认的windowsphone照片查看器一样)。我需要在应用程序中导航页面