1 write to TextField
Microsoft.Maui.Controls (1)
Compatibility\Handlers\ListView\iOS\EntryCellRenderer.cs (1)
153 TextField = new UITextField(new RectangleF(0, 0, 100, 30)) { BorderStyle = UITextBorderStyle.None };
12 references to TextField
Microsoft.Maui.Controls (12)
Compatibility\Handlers\ListView\iOS\EntryCellRenderer.cs (12)
99 .SetValue(EntryCell.TextProperty, cell.TextField.Text, specificity: SetterSpecificity.FromHandler); 104 cell.TextField.UpdateHorizontalTextAlignment(entryCell); 114 cell.TextField.Enabled = entryCell.IsEnabled; 119 cell.TextField.ApplyKeyboard(entryCell.Keyboard); 138 cell.TextField.Placeholder = entryCell.Placeholder; 143 if (cell.TextField.Text == entryCell.Text) 146 cell.TextField.Text = entryCell.Text; 155 TextField.EditingChanged += TextFieldOnEditingChanged; 156 TextField.ShouldReturn = OnShouldReturn; 158 ContentView.AddSubview(TextField); 172 TextField.Frame = new RectangleF(start, (Frame.Height - 30) / 2, Frame.Width - TextLabel.Frame.Left - start, 30); 175 TextField.VerticalAlignment = UIControlContentVerticalAlignment.Center;