Ejemplo n.º 1
0
        void SetControlPropertiesFromProxy()
        {
            if (TypedNativeView == null)
            {
                return;
            }

            foreach (UIControlState uiControlState in ControlStates)
            {
                TypedNativeView.SetTitleColor(UIButton.Appearance.TitleColor(uiControlState), uiControlState);                 // If new values are null, old values are preserved.
                TypedNativeView.SetTitleShadowColor(UIButton.Appearance.TitleShadowColor(uiControlState), uiControlState);
                TypedNativeView.SetBackgroundImage(UIButton.Appearance.BackgroundImageForState(uiControlState), uiControlState);
            }
        }