зеркало из https://github.com/DeGsoft/maui-linux.git
41 строка
1.3 KiB
C#
41 строка
1.3 KiB
C#
namespace Xamarin.Forms
|
|
{
|
|
public class InputView : View
|
|
{
|
|
public static readonly BindableProperty KeyboardProperty = BindableProperty.Create("Keyboard", typeof(Keyboard), typeof(InputView), Keyboard.Default,
|
|
coerceValue: (o, v) => (Keyboard)v ?? Keyboard.Default);
|
|
public static readonly BindableProperty IsSpellCheckEnabledProperty = BindableProperty.Create("IsSpellCheckEnabled", typeof(bool), typeof(InputView), true);
|
|
|
|
public static readonly BindableProperty MaxLengthProperty = BindableProperty.Create(nameof(MaxLength), typeof(int), typeof(int), int.MaxValue);
|
|
|
|
public static readonly BindableProperty IsReadOnlyProperty = BindableProperty.Create(nameof(IsReadOnly), typeof(bool), typeof(InputView), false);
|
|
|
|
public int MaxLength
|
|
{
|
|
get { return (int)GetValue(MaxLengthProperty); }
|
|
set { SetValue(MaxLengthProperty, value); }
|
|
}
|
|
|
|
internal InputView()
|
|
{
|
|
}
|
|
|
|
public Keyboard Keyboard
|
|
{
|
|
get { return (Keyboard)GetValue(KeyboardProperty); }
|
|
set { SetValue(KeyboardProperty, value); }
|
|
}
|
|
|
|
public bool IsSpellCheckEnabled
|
|
{
|
|
get { return (bool)GetValue(IsSpellCheckEnabledProperty); }
|
|
set { SetValue(IsSpellCheckEnabledProperty, value); }
|
|
}
|
|
|
|
public bool IsReadOnly
|
|
{
|
|
get { return (bool)GetValue(IsReadOnlyProperty); }
|
|
set { SetValue(IsReadOnlyProperty, value); }
|
|
}
|
|
}
|
|
} |