1 write to TextField
Microsoft.Maui.Controls.Compatibility (1)
iOS\Cells\EntryCellRenderer.cs (1)
144 TextField = new UITextField(new RectangleF(0, 0, 100, 30)) { BorderStyle = UITextBorderStyle.None };
12 references to TextField
Microsoft.Maui.Controls.Compatibility (12)
iOS\Cells\EntryCellRenderer.cs (12)
94 .SetValue(EntryCell.TextProperty, cell.TextField.Text, specificity: SetterSpecificity.FromHandler); 100 cell.TextField.TextAlignment = entryCell.HorizontalTextAlignment.ToPlatformTextAlignment(viewController?.EffectiveFlowDirection ?? default(EffectiveFlowDirection)); 109 cell.TextField.Enabled = entryCell.IsEnabled; 114 cell.TextField.ApplyKeyboard(entryCell.Keyboard); 129 cell.TextField.Placeholder = entryCell.Placeholder; 134 if (cell.TextField.Text == entryCell.Text) 137 cell.TextField.Text = entryCell.Text; 146 TextField.EditingChanged += TextFieldOnEditingChanged; 147 TextField.ShouldReturn = OnShouldReturn; 149 ContentView.AddSubview(TextField); 162 TextField.Frame = new RectangleF(start, (Frame.Height - 30) / 2, Frame.Width - TextLabel.Frame.Left - start, 30); 164 TextField.VerticalAlignment = UIControlContentVerticalAlignment.Center;