From f449b31918fbc2d3525cd151ff36c27b175887a0 Mon Sep 17 00:00:00 2001 From: Jimmy Garrido Date: Fri, 17 Feb 2017 02:40:40 -0800 Subject: Fixed Title not updating on parent page (#743) --- Xamarin.Forms.Platform.WinRT/NavigationPageRenderer.cs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Xamarin.Forms.Platform.WinRT') diff --git a/Xamarin.Forms.Platform.WinRT/NavigationPageRenderer.cs b/Xamarin.Forms.Platform.WinRT/NavigationPageRenderer.cs index 185737aa..d0b5727f 100644 --- a/Xamarin.Forms.Platform.WinRT/NavigationPageRenderer.cs +++ b/Xamarin.Forms.Platform.WinRT/NavigationPageRenderer.cs @@ -314,6 +314,8 @@ namespace Xamarin.Forms.Platform.WinRT UpdateBackButtonTitle(); else if (e.PropertyName == NavigationPage.HasNavigationBarProperty.PropertyName) UpdateTitleVisible(); + else if (e.PropertyName == Page.TitleProperty.PropertyName) + UpdateTitleOnParents(); } void OnElementPropertyChanged(object sender, PropertyChangedEventArgs e) -- cgit v1.2.3