2016-05-24 04:56:38 +03:00
|
|
|
|
using Bit.App.Enums;
|
|
|
|
|
using System;
|
2016-05-10 06:25:37 +03:00
|
|
|
|
using Xamarin.Forms;
|
|
|
|
|
|
|
|
|
|
namespace Bit.App.Controls
|
|
|
|
|
{
|
|
|
|
|
public class ExtendedEntry : Entry
|
|
|
|
|
{
|
|
|
|
|
public static readonly BindableProperty HasBorderProperty =
|
|
|
|
|
BindableProperty.Create(nameof(HasBorder), typeof(bool), typeof(ExtendedEntry), true);
|
|
|
|
|
|
|
|
|
|
public static readonly BindableProperty HasOnlyBottomBorderProperty =
|
|
|
|
|
BindableProperty.Create(nameof(HasOnlyBottomBorder), typeof(bool), typeof(ExtendedEntry), false);
|
|
|
|
|
|
2016-05-11 05:53:34 +03:00
|
|
|
|
public static readonly BindableProperty BottomBorderColorProperty =
|
|
|
|
|
BindableProperty.Create(nameof(BottomBorderColor), typeof(Color), typeof(ExtendedEntry), Color.Default);
|
2016-05-10 06:25:37 +03:00
|
|
|
|
|
|
|
|
|
public static readonly BindableProperty MaxLengthProperty =
|
|
|
|
|
BindableProperty.Create(nameof(MaxLength), typeof(int), typeof(ExtendedEntry), int.MaxValue);
|
|
|
|
|
|
|
|
|
|
public bool HasBorder
|
|
|
|
|
{
|
|
|
|
|
get { return (bool)GetValue(HasBorderProperty); }
|
|
|
|
|
set { SetValue(HasBorderProperty, value); }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool HasOnlyBottomBorder
|
|
|
|
|
{
|
|
|
|
|
get { return (bool)GetValue(HasOnlyBottomBorderProperty); }
|
|
|
|
|
set { SetValue(HasOnlyBottomBorderProperty, value); }
|
|
|
|
|
}
|
|
|
|
|
|
2016-05-11 05:53:34 +03:00
|
|
|
|
public Color BottomBorderColor
|
2016-05-10 06:25:37 +03:00
|
|
|
|
{
|
2016-05-11 05:53:34 +03:00
|
|
|
|
get { return (Color)GetValue(BottomBorderColorProperty); }
|
|
|
|
|
set { SetValue(BottomBorderColorProperty, value); }
|
2016-05-10 06:25:37 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int MaxLength
|
|
|
|
|
{
|
|
|
|
|
get { return (int)GetValue(MaxLengthProperty); }
|
|
|
|
|
set { SetValue(MaxLengthProperty, value); }
|
|
|
|
|
}
|
2016-05-24 04:56:38 +03:00
|
|
|
|
|
|
|
|
|
public ReturnType? ReturnType { get; set; }
|
|
|
|
|
public bool? Autocorrect { get; set; }
|
|
|
|
|
public bool DisableAutocapitalize { get; set; }
|
2016-05-10 06:25:37 +03:00
|
|
|
|
}
|
|
|
|
|
}
|