diff --git a/8.0/UserInterface/Views/ListViewDemos/ListViewDemos/Views/MainPage.xaml.cs b/8.0/UserInterface/Views/ListViewDemos/ListViewDemos/Views/MainPage.xaml.cs index 46aa8c53f..1a8866d28 100644 --- a/8.0/UserInterface/Views/ListViewDemos/ListViewDemos/Views/MainPage.xaml.cs +++ b/8.0/UserInterface/Views/ListViewDemos/ListViewDemos/Views/MainPage.xaml.cs @@ -18,5 +18,14 @@ public MainPage() }); BindingContext = this; } + + protected override void OnAppearing() + { + base.OnAppearing(); + // Force refresh the bindings to avoid stale command issues after back navigation + BindingContext = null; + BindingContext = this; + } + }