0
我在XBAP導航XBAP問題幀
有一個問題在導航我創建兩頁(第1頁和第2頁)
第一頁具有一個按鈕用於導航到第2頁
<Button Height="23" Width="76" Name="button1" Click="button1_Click">Page2</Button>
private void button1_Click(object sender, RoutedEventArgs e)
{
NavigationService n = NavigationService.GetNavigationService(sender as Button);
n.Navigate(new Uri("Page2.xaml", UriKind.Relative));
}
Page2中有一個框架沒有任何來源
<Frame Margin="0,90,0,0"/>
運行的應用程序,並導航到第二頁後,導航將正常工作,
但是當我按下返回在瀏覽器中,然後按下按鈕1再次
瀏覽器會顯示此消息
注:在某些情況下,你需要重複嘗試
任何幫助!
在此先感謝