| 505 | } |
| 506 | |
| 507 | void MainPage::WindowWidth_CurrentStateChanged(IInspectable const&, VisualStateChangedEventArgs const& e) |
| 508 | { |
| 509 | const auto& state = e.NewState(); |
| 510 | |
| 511 | NavigationManager.AppViewBackButtonVisibility(state == nullptr |
| 512 | ? AppViewBackButtonVisibility::Visible |
| 513 | : AppViewBackButtonVisibility::Collapsed); |
| 514 | } |
| 515 | |
| 516 | void MainPage::MainSplitView_PaneClosing(SplitView const&, SplitViewPaneClosingEventArgs const&) |
| 517 | { |
nothing calls this directly
no outgoing calls
no test coverage detected