summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.WinRT
diff options
context:
space:
mode:
authorJimmy Garrido <jimmygarrido@outlook.com>2017-02-17 02:40:40 -0800
committerRui Marinho <me@ruimarinho.net>2017-02-17 10:40:40 +0000
commitf449b31918fbc2d3525cd151ff36c27b175887a0 (patch)
tree51cfadd87eabe3a8debab756e563084fd96ef94a /Xamarin.Forms.Platform.WinRT
parent53b1bbaf366a43832df1e941e42ca3d0b4c6fcbf (diff)
downloadxamarin-forms-f449b31918fbc2d3525cd151ff36c27b175887a0.tar.gz
xamarin-forms-f449b31918fbc2d3525cd151ff36c27b175887a0.tar.bz2
xamarin-forms-f449b31918fbc2d3525cd151ff36c27b175887a0.zip
Fixed Title not updating on parent page (#743)
Diffstat (limited to 'Xamarin.Forms.Platform.WinRT')
-rw-r--r--Xamarin.Forms.Platform.WinRT/NavigationPageRenderer.cs2
1 files changed, 2 insertions, 0 deletions
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)