예제 #1
0
        public override void ViewWillAppear(bool animated)
        {
            base.ViewWillAppear(animated);

            // Force nav bar text color
            //var color = NavigationBarAttachedProperty.GetTextColor(Element);
            NavigationBarAttachedProperty.SetTextColor(Element, Color.White);
        }
예제 #2
0
        public override void ViewWillAppear(bool animated)
        {
            base.ViewWillAppear(animated);

            var color = NavigationBarAttachedProperty.GetTextColor(Element);

            NavigationBarAttachedProperty.SetTextColor(Element, color);
        }
예제 #3
0
        public override void ViewWillAppear(bool animated)
        {
            base.ViewWillAppear(animated);

            // Force nav bar text color
            var color = NavigationBarAttachedProperty.GetTextColor(Element);

            NavigationBarAttachedProperty.SetTextColor(Element, color);

            var background = NavigationBarAttachedProperty.GetBackgroundColor(Element);

            NavigationBarAttachedProperty.SetBackgroundColor(Element, background);
        }