void SetBorderColor(MvvmAspire.Controls.Picker element)
 {
     if (element.BorderColor == Color.Transparent)
     {
         Control.BorderStyle = UIKit.UITextBorderStyle.None;
     }
     else
     {
         Control.Layer.BorderColor = element.BorderColor.ToCGColor();
     }
 }
 void setPlaceHolderColor(MvvmAspire.Controls.Picker element)
 {
     if (element.SelectedIndex <= 0)
     {
         //connecrt to cyc colors grayforms
         Control.TextColor = Color.FromHex("9B9B9B").ToUIColor();
     }
     else
     {
         Control.TextColor = textColor;
     }
 }
 void SetTextColor(MvvmAspire.Controls.Picker element)
 {
     Control.TextColor = element.TextColor.ToUIColor();
     textColor         = element.TextColor.ToUIColor();
 }