wp8, C#, VS12
I have a listbox item that when selected/clicked takes the user to anther page...WinePage.xaml
<ListBox
SelectedIndex="-1"
SelectionChanged="OpenWinePage_Click"
x:Name="allItemsListBox"
ItemsSource="{Binding AllItems}"
Margin="12, 0, 12, 0" Width="440"
ItemTemplate="{StaticResource WineListBoxItemTemplate}" />
当我使用 WP8 的硬件后退按钮返回 MainPage.xaml 时,我刚刚单击的 ListBox 不再可选择/可单击。但我希望能够直接回到那个特定的 ListBox。
我的 MainPage.xaml.cs 页面中将用户带到 WinePage.xaml 的代码是
private void OpenWinePage_Click(object sender, EventArgs e)
{
NavigationService.Navigate(new Uri("/WinePage.xaml", UriKind.Relative));
}
我需要做什么才能让 ListBox 在返回时可选择/可点击?
谢谢!
R