1 write to Text
Microsoft.Maui.Controls (1)
TableView\TableModel.cs (1)
21
return new TextCell {
Text
= item.ToString() };
4 references to Text
Microsoft.Maui.Controls (4)
Cells\TextCell.cs (2)
41
/// <summary>Bindable property for <see cref="
Text
"/>.</summary>
42
public static readonly BindableProperty TextProperty = BindableProperty.Create(nameof(
Text
), typeof(string), typeof(TextCell), default(string));
Compatibility\Handlers\ListView\iOS\TextCellRenderer.cs (2)
35
tvc.TextLabel.Text = textCell.
Text
;
59
tvc.TextLabel.Text = ((TextCell)tvc.Cell).
Text
;