public override void BindProperties()
 {
     if (Slider != null)
     {
         ValueProperty.BindTo(this, () => Slider.Value);
     }
 }
        public override void BindProperties()
        {
            base.BindProperties();

            if (DetailTextLabel != null)
            {
                ValueProperty.BindTo(this, () => DetailTextLabel.Text);
            }
        }
 public override void BindProperties()
 {
     base.BindProperties();
     ValueProperty.BindTo(this, () => Value);
 }