private static void SetBorderWidth(ExtendedEntry entry, EntryEditText control)
        {
            var shape = (ShapeDrawable)control.Background;

            shape.Paint.StrokeWidth = entry.BorderWidth;
        }
        private static void SetBorderColor(ExtendedEntry entry, EntryEditText control)
        {
            var shape = (ShapeDrawable)control.Background;

            shape.Paint.Color = entry.BorderColor.ToAndroid();
        }