在這裏當一個頁面被創建的默認backKey按鈕:如何覆蓋默認BackKey按鈕頁面創建
問題:
如何重寫?我想在這個backKey canGoBack之前檢查一些東西!
<Button Content="Button" Click="GoBack" IsEnabled="{Binding Frame.CanGoBack, ElementName=pageRoot}" Style="{StaticResource BackButtonStyle}" HorizontalAlignment="Left" Margin="16,15,0,0" VerticalAlignment="Top" Height="55"/> ---- Update : in LayoutAwarePage.cs protected virtual void GoBack(object sender, RoutedEventArgs e) { // Use the navigation frame to return to the previous page if (this.Frame != null && this.Frame.CanGoBack) this.Frame.GoBack(); }
適用於Windows Phone 8或Windows 8嗎? – Xyroid
對於Windows 8,抱歉使用了錯誤的標籤。 – MilkBottle