我有一个包含图像的列表框页面。
<ListBox Name="photoListbox" ItemsSource="{Binding Photo}" >
<ListBox.ItemTemplate>
<DataTemplate>
<Image Source="{Binding xBig}" Stretch="UniformToFill" Tap="ImageTap" />
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
另外,我的页面上有一个 ApplicationBar,当用户不点击图像时它是不可见的。
<phone:PhoneApplicationPage.ApplicationBar>
<shell:ApplicationBar x:Name="AppBar" IsVisible="False">
<shell:ApplicationBarIconButton x:Name="prevAppBarButton"
IconUri="Images/appbar.transport.rew.rest.png"
Text="previous"
IsEnabled="False"
/>
<shell:ApplicationBarIconButton x:Name="playAppBarButton"
IconUri="Images/appbar.transport.play.rest.png"
Text="play"
/>
<shell:ApplicationBarIconButton x:Name="pauseAppBarButton"
IconUri="Images/appbar.transport.pause.rest.png"
Text="pause"
IsEnabled="False"
/>
<shell:ApplicationBarIconButton x:Name="nextAppBarButton"
IconUri="Images/appbar.transport.ff.rest.png"
Text="next"
IsEnabled="False"
/>
</shell:ApplicationBar>
</phone:PhoneApplicationPage.ApplicationBar>
Image_Tap 处理程序
private void ImageTap(object sender, GestureEventArgs e)
{
AppBar.IsVisible = true;
}
但是,然后我点击图像(我希望我的 shell:ApplicationBar 会出现) - 我有一个 nullReferenceException。我该怎么办?