4 references to TextColor
Microsoft.Maui.Controls (4)
Cells\TextCell.cs (2)
47 /// <summary>Bindable property for <see cref="TextColor"/>.</summary> 48 public static readonly BindableProperty TextColorProperty = BindableProperty.Create(nameof(TextColor), typeof(Color), typeof(TextCell), null);
Compatibility\Handlers\ListView\iOS\TextCellRenderer.cs (2)
37 tvc.TextLabel.TextColor = (textCell.TextColor ?? DefaultTextColor).ToPlatform(); 68 tvc.TextLabel.TextColor = textCell.TextColor?.ToPlatform() ?? DefaultTextColor.ToPlatform();