6 references to Text
Microsoft.Maui.Controls (4)
Cells\EntryCell.cs (2)
11
/// <summary>Bindable property for <see cref="
Text
"/>.</summary>
12
public static readonly BindableProperty TextProperty = BindableProperty.Create(nameof(
Text
), typeof(string), typeof(EntryCell), null, BindingMode.TwoWay);
Compatibility\Handlers\ListView\iOS\EntryCellRenderer.cs (2)
143
if (cell.TextField.Text == entryCell.
Text
)
146
cell.TextField.Text = entryCell.
Text
;
Microsoft.Maui.Controls.Compatibility (2)
iOS\Cells\EntryCellRenderer.cs (2)
134
if (cell.TextField.Text == entryCell.
Text
)
137
cell.TextField.Text = entryCell.
Text
;