зеркало из https://github.com/DeGsoft/maui-linux.git
18 строки
563 B
C#
18 строки
563 B
C#
using CoreGraphics;
|
|
using UIKit;
|
|
using Xamarin.Forms.Internals;
|
|
|
|
namespace Xamarin.Forms.Material.iOS
|
|
{
|
|
internal class NoCaretMaterialTextField : MaterialTextField
|
|
{
|
|
public NoCaretMaterialTextField(IMaterialEntryRenderer element, IFontElement fontElement) : base(element, fontElement)
|
|
{
|
|
SpellCheckingType = UITextSpellCheckingType.No;
|
|
AutocorrectionType = UITextAutocorrectionType.No;
|
|
AutocapitalizationType = UITextAutocapitalizationType.None;
|
|
}
|
|
|
|
public override CGRect GetCaretRectForPosition(UITextPosition position) => new CGRect();
|
|
}
|
|
} |