我正在尝试向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添加填充。
答案 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;
}
}