4 references to LabelColor
Microsoft.Maui.Controls (3)
Cells\EntryCell.cs (2)
20 /// <summary>Bindable property for <see cref="LabelColor"/>.</summary> 21 public static readonly BindableProperty LabelColorProperty = BindableProperty.Create(nameof(LabelColor), typeof(Color), typeof(EntryCell), null);
Compatibility\Handlers\ListView\iOS\EntryCellRenderer.cs (1)
133 cell.TextLabel.TextColor = entryCell.LabelColor?.ToPlatform() ?? DefaultTextColor.ToPlatform();
Microsoft.Maui.Controls.Compatibility (1)
iOS\Cells\EntryCellRenderer.cs (1)
124 cell.TextLabel.TextColor = entryCell.LabelColor.ToPlatform(DefaultTextColor);