diff --git a/bilibili2/MainPage.xaml b/bilibili2/MainPage.xaml
index 1449559..261415a 100644
--- a/bilibili2/MainPage.xaml
+++ b/bilibili2/MainPage.xaml
@@ -431,7 +431,7 @@
-
+
diff --git a/bilibili2/MainPage.xaml.cs b/bilibili2/MainPage.xaml.cs
index 8bf4d04..1e9f5e0 100644
--- a/bilibili2/MainPage.xaml.cs
+++ b/bilibili2/MainPage.xaml.cs
@@ -2085,6 +2085,15 @@ private void btn_search_Click(object sender, RoutedEventArgs e)
top_txt_find.Visibility = Visibility.Visible;
top_txt_find.Focus(FocusState.Programmatic);
}
+
+ private void btn_back_Click(object sender, RoutedEventArgs e)
+ {
+ if (infoFrame.Content != null)
+ if (infoFrame.CanGoBack)
+ infoFrame.GoBack();
+ else
+ MainPage_BackEvent();
+ }
}
public class FeedItemDataTemplateSelector : DataTemplateSelector