本文整理汇总了C#中UITextField.Below方法的典型用法代码示例。如果您正苦于以下问题:C# UITextField.Below方法的具体用法?C# UITextField.Below怎么用?C# UITextField.Below使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UITextField
的用法示例。
在下文中一共展示了UITextField.Below方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: LoadView
public override void LoadView ()
{
View = new UIView ()
.Apply (Style.Screen);
View.Add (inputsContainer = new UIView ().Apply (Style.Login.InputsContainer));
inputsContainer.Add (topBorder = new UIView ().Apply (Style.Login.InputsBorder));
inputsContainer.Add (emailTextField = new UITextField () {
Placeholder = "LoginEmailHint".Tr (),
AutocapitalizationType = UITextAutocapitalizationType.None,
KeyboardType = UIKeyboardType.EmailAddress,
ReturnKeyType = UIReturnKeyType.Next,
ClearButtonMode = UITextFieldViewMode.Always,
ShouldReturn = HandleShouldReturn,
}.Apply (Style.Login.EmailField));
inputsContainer.Add (middleBorder = new UIView ().Apply (Style.Login.InputsBorder));
inputsContainer.Add (passwordTextField = new UITextField () {
Placeholder = "LoginPasswordHint".Tr (),
AutocapitalizationType = UITextAutocapitalizationType.None,
AutocorrectionType = UITextAutocorrectionType.No,
SecureTextEntry = true,
ReturnKeyType = UIReturnKeyType.Go,
ShouldReturn = HandleShouldReturn,
}.Apply (Style.Login.PasswordField));
inputsContainer.Add (bottomBorder = new UIView ().Apply (Style.Login.InputsBorder));
View.Add (passwordActionButton = new UIButton ()
.Apply (Style.Login.LoginButton));
passwordActionButton.SetTitle ("LoginLoginButtonText".Tr (), UIControlState.Normal);
passwordActionButton.TouchUpInside += OnPasswordActionButtonTouchUpInside;
inputsContainer.AddConstraints (
topBorder.AtTopOf (inputsContainer),
topBorder.AtLeftOf (inputsContainer),
topBorder.AtRightOf (inputsContainer),
topBorder.Height ().EqualTo (1f),
emailTextField.Below (topBorder),
emailTextField.AtLeftOf (inputsContainer, 20f),
emailTextField.AtRightOf (inputsContainer, 10f),
emailTextField.Height ().EqualTo (42f),
middleBorder.Below (emailTextField),
middleBorder.AtLeftOf (inputsContainer, 20f),
middleBorder.AtRightOf (inputsContainer),
middleBorder.Height ().EqualTo (1f),
passwordTextField.Below (middleBorder),
passwordTextField.AtLeftOf (inputsContainer, 20f),
passwordTextField.AtRightOf (inputsContainer),
passwordTextField.Height ().EqualTo (42f),
bottomBorder.Below (passwordTextField),
bottomBorder.AtLeftOf (inputsContainer),
bottomBorder.AtRightOf (inputsContainer),
bottomBorder.AtBottomOf (inputsContainer),
bottomBorder.Height ().EqualTo (1f)
);
inputsContainer.SubviewsDoNotTranslateAutoresizingMaskIntoConstraints ();
View.AddConstraints (
inputsContainer.AtTopOf (View, 80f),
inputsContainer.AtLeftOf (View),
inputsContainer.AtRightOf (View),
passwordActionButton.Below (inputsContainer, 20f),
passwordActionButton.AtLeftOf (View),
passwordActionButton.AtRightOf (View),
passwordActionButton.Height ().EqualTo (60f)
);
View.SubviewsDoNotTranslateAutoresizingMaskIntoConstraints ();
}
示例2: LoadView
public override void LoadView ()
{
View = new UIView ()
.Apply (Style.Screen);
View.Add (inputsContainer = new UIView ().Apply (Style.Signup.InputsContainer));
inputsContainer.Add (topBorder = new UIView ().Apply (Style.Signup.InputsBorder));
inputsContainer.Add (emailTextField = new UITextField () {
Placeholder = "SignupEmailHint".Tr (),
AutocapitalizationType = UITextAutocapitalizationType.None,
KeyboardType = UIKeyboardType.EmailAddress,
ReturnKeyType = UIReturnKeyType.Next,
ClearButtonMode = UITextFieldViewMode.Always,
ShouldReturn = HandleShouldReturn,
}.Apply (Style.Signup.EmailField));
emailTextField.EditingChanged += OnTextFieldEditingChanged;
inputsContainer.Add (middleBorder = new UIView ().Apply (Style.Signup.InputsBorder));
inputsContainer.Add(passwordTextField = new PasswordTextField () {
Placeholder = "SignupPasswordHint".Tr (),
AutocapitalizationType = UITextAutocapitalizationType.None,
AutocorrectionType = UITextAutocorrectionType.No,
SecureTextEntry = true,
ReturnKeyType = UIReturnKeyType.Go,
ShouldReturn = HandleShouldReturn,
}.Apply (Style.Signup.PasswordField));
passwordTextField.EditingChanged += OnTextFieldEditingChanged;
inputsContainer.Add (bottomBorder = new UIView ().Apply (Style.Signup.InputsBorder));
View.Add (passwordActionButton = new UIButton ()
.Apply (Style.Signup.SignupButton));
passwordActionButton.SetTitle ("SignupSignupButtonText".Tr (), UIControlState.Normal);
passwordActionButton.TouchUpInside += OnPasswordActionButtonTouchUpInside;
View.Add (googleActionButton = new UIButton ()
.Apply (Style.Signup.GoogleButton));
googleActionButton.SetTitle ("SignupGoogleButtonText".Tr (), UIControlState.Normal);
googleActionButton.TouchUpInside += OnGoogleActionButtonTouchUpInside;
View.Add (legalLabel = new TTTAttributedLabel () {
Delegate = new LegalLabelDelegate (),
}.Apply (Style.Signup.LegalLabel));
SetLegalText (legalLabel);
inputsContainer.AddConstraints (
topBorder.AtTopOf (inputsContainer),
topBorder.AtLeftOf (inputsContainer),
topBorder.AtRightOf (inputsContainer),
topBorder.Height ().EqualTo (1f),
emailTextField.Below (topBorder),
emailTextField.AtLeftOf (inputsContainer, 20f),
emailTextField.AtRightOf (inputsContainer, 10f),
emailTextField.Height ().EqualTo (42f),
middleBorder.Below (emailTextField),
middleBorder.AtLeftOf (inputsContainer, 20f),
middleBorder.AtRightOf (inputsContainer),
middleBorder.Height ().EqualTo (1f),
passwordTextField.Below (middleBorder),
passwordTextField.AtLeftOf (inputsContainer, 20f),
passwordTextField.AtRightOf (inputsContainer),
passwordTextField.Height ().EqualTo (42f),
bottomBorder.Below (passwordTextField),
bottomBorder.AtLeftOf (inputsContainer),
bottomBorder.AtRightOf (inputsContainer),
bottomBorder.AtBottomOf (inputsContainer),
bottomBorder.Height ().EqualTo (1f)
);
inputsContainer.SubviewsDoNotTranslateAutoresizingMaskIntoConstraints ();
View.AddConstraints (
inputsContainer.AtTopOf (View, 80f),
inputsContainer.AtLeftOf (View),
inputsContainer.AtRightOf (View),
passwordActionButton.Below (inputsContainer, 20f),
passwordActionButton.AtLeftOf (View),
passwordActionButton.AtRightOf (View),
passwordActionButton.Height ().EqualTo (60f),
googleActionButton.Below (passwordActionButton, 5f),
googleActionButton.AtLeftOf (View),
googleActionButton.AtRightOf (View),
googleActionButton.Height ().EqualTo (60f),
legalLabel.AtBottomOf (View, 30f),
legalLabel.AtLeftOf (View, 40f),
legalLabel.AtRightOf (View, 40f)
);
View.SubviewsDoNotTranslateAutoresizingMaskIntoConstraints ();
//.........这里部分代码省略.........
示例3: ViewDidLoad
public override void ViewDidLoad()
{
View.BackgroundColor = UIColor.White;
base.ViewDidLoad();
// ios7 layout
if (RespondsToSelector(new Selector("edgesForExtendedLayout")))
EdgesForExtendedLayout = UIRectEdge.None;
var fNameLabel = new UILabel {Text = "First"};
Add(fNameLabel);
var sNameLabel = new UILabel {Text = "Last"};
Add(sNameLabel);
var numberLabel = new UILabel {Text = "#"};
Add(numberLabel);
var streetLabel = new UILabel {Text = "Street"};
Add(streetLabel);
var townLabel = new UILabel {Text = "Town"};
Add(townLabel);
var zipLabel = new UILabel {Text = "Zip"};
Add(zipLabel);
var fNameField = new UITextField() { BackgroundColor = UIColor.LightGray, BorderStyle = UITextBorderStyle.RoundedRect };
Add(fNameField);
var sNameField = new UITextField() { BackgroundColor = UIColor.LightGray, BorderStyle = UITextBorderStyle.RoundedRect };
Add(sNameField);
var numberField = new UITextField() { BackgroundColor = UIColor.LightGray, BorderStyle = UITextBorderStyle.RoundedRect };
Add(numberField);
var streetField = new UITextField() { BackgroundColor = UIColor.LightGray, BorderStyle = UITextBorderStyle.RoundedRect };
Add(streetField);
var townField = new UITextField() { BackgroundColor = UIColor.LightGray, BorderStyle = UITextBorderStyle.RoundedRect };
Add(townField);
var zipField = new UITextField() { BackgroundColor = UIColor.LightGray, BorderStyle = UITextBorderStyle.RoundedRect };
Add(zipField);
var debug = new UILabel() { BackgroundColor = UIColor.White, Lines = 0 };
Add(debug);
var set = this.CreateBindingSet<FormView, FormViewModel>();
set.Bind(fNameField).To(vm => vm.FirstName);
set.Bind(sNameField).To(vm => vm.LastName);
set.Bind(numberField).To(vm => vm.Number);
set.Bind(streetField).To(vm => vm.Street);
set.Bind(townField).To(vm => vm.Town);
set.Bind(zipField).To(vm => vm.Zip);
set.Bind(debug).To("FirstName + ' ' + LastName + ', ' + Number + ' ' + Street + ' ' + Town + ' ' + Zip");
set.Apply();
View.SubviewsDoNotTranslateAutoresizingMaskIntoConstraints();
var hMargin = 10;
var vMargin = 10;
View.AddConstraints(
fNameLabel.AtTopOf(View, vMargin),
fNameLabel.AtLeftOf(View, hMargin),
fNameLabel.ToLeftOf(sNameLabel, hMargin),
sNameLabel.WithSameTop(fNameLabel),
sNameLabel.AtRightOf(View, hMargin),
sNameLabel.WithSameWidth(fNameLabel),
fNameField.WithSameWidth(fNameLabel),
fNameField.WithSameLeft(fNameLabel),
fNameField.Below(fNameLabel, vMargin),
sNameField.WithSameLeft(sNameLabel),
sNameField.WithSameWidth(sNameLabel),
sNameField.WithSameTop(fNameField),
numberLabel.WithSameLeft(fNameLabel),
numberLabel.ToLeftOf(streetLabel, hMargin),
numberLabel.Below(fNameField, vMargin),
numberLabel.WithRelativeWidth(streetLabel, 0.3f),
streetLabel.WithSameTop(numberLabel),
streetLabel.AtRightOf(View, hMargin),
numberField.WithSameLeft(numberLabel),
numberField.WithSameWidth(numberLabel),
numberField.Below(numberLabel, vMargin),
streetField.WithSameLeft(streetLabel),
streetField.WithSameWidth(streetLabel),
streetField.WithSameTop(numberField),
townLabel.WithSameLeft(fNameLabel),
townLabel.WithSameRight(streetLabel),
//.........这里部分代码省略.........