Xamarin iOS UITextField填充边框样式无

时间:2016-05-13 07:04:35

标签: ios xamarin xamarin.ios

我正在尝试向UITextField添加填充。我做了一些研究,发现了以下代码。

UIView paddingView = new UIView(new RectangleF(0, 0, 5, 20));
txtBoxUsername.LeftView = paddingView;
txtBoxUsername.LeftViewMode = UITextFieldViewMode.Always;

此代码正常工作,直到有UITextField的边框。我的UiTextField没有边框。一旦我设置了Border None,这个填充效果也会丢失。我使用以下代码设置border none。

txtBoxUsername.BorderStyle = UITextBorderStyle.None;

任何人都可以告诉我如何在没有边框的情况下向UITextField添加填充。

1 个答案:

答案 0 :(得分:0)

以下代码对我有用

public class TextBox : UITextField
{
    public TextBox(string placeholder, UIFont font = null)
    {
        Layer.BorderWidth = 0f;
        AttributedPlaceholder = new NSAttributedString(
                            placeholder,
                            font: UIFont.ItalicSystemFontOfSize(15.0f)
                            );
        if (font != null)
        {
            Font = font;
        }
        UIView paddingView = new UIView(new CGRect(0, 0, 10.0f, 20.0f));
        LeftView = paddingView;
        LeftViewMode = UITextFieldViewMode.Always;
    }


}