1 type derived from TextCell
Microsoft.Maui.Controls (1)
Cells\ImageCell.cs (1)
7
public class ImageCell :
TextCell
2 instantiations of TextCell
Microsoft.Maui.Controls (2)
ListView\ListView.cs (1)
416
TextCell textCell = new
TextCell
();
TableView\TableModel.cs (1)
21
return new
TextCell
{ Text = item.ToString() };
15 references to TextCell
Microsoft.Maui.Controls (15)
Cells\TextCell.cs (12)
12
public static readonly BindableProperty CommandProperty = BindableProperty.Create(nameof(Command), typeof(ICommand), typeof(
TextCell
), default(ICommand),
15
var
textCell = (
TextCell
)bindable;
21
var
textCell = (
TextCell
)bindable;
31
public static readonly BindableProperty CommandParameterProperty = BindableProperty.Create(nameof(CommandParameter), typeof(object), typeof(
TextCell
), default(object),
34
var
textCell = (
TextCell
)bindable;
42
public static readonly BindableProperty TextProperty = BindableProperty.Create(nameof(Text), typeof(string), typeof(
TextCell
), default(string));
45
public static readonly BindableProperty DetailProperty = BindableProperty.Create(nameof(Detail), typeof(string), typeof(
TextCell
), default(string));
48
public static readonly BindableProperty TextColorProperty = BindableProperty.Create(nameof(TextColor), typeof(Color), typeof(
TextCell
), null);
51
public static readonly BindableProperty DetailColorProperty = BindableProperty.Create(nameof(DetailColor), typeof(Color), typeof(
TextCell
), null);
ListView\ListView.cs (2)
416
TextCell
textCell = new TextCell();
417
textCell.SetBinding(
TextCell
.TextProperty, static (object cell) => cell, BindingMode.OneWay, _toStringValueConverter);
TemplatedItemsList.cs (1)
764
TextCell
.TextProperty,