26 references to TextColorProperty
Microsoft.Maui.Controls (26)
Button\Button.cs (3)
48 public static readonly BindableProperty TextColorProperty = TextElement.TextColorProperty; 232 get { return (Color)GetValue(TextElement.TextColorProperty); } 233 set { SetValue(TextElement.TextColorProperty, value); }
ContentConverter.cs (2)
70 if (ShouldSetBinding(content, TextElement.TextColorProperty)) 72 content.SetBinding(TextElement.TextColorProperty, static (ITextElement te) => te.TextColor, source: source);
DatePicker\DatePicker.cs (3)
31 public static readonly BindableProperty TextColorProperty = TextElement.TextColorProperty; 93 get { return (Color)GetValue(TextElement.TextColorProperty); } 94 set { SetValue(TextElement.TextColorProperty, value); }
InputView\InputView.cs (1)
40 public static readonly BindableProperty TextColorProperty = TextElement.TextColorProperty;
Label\Label.cs (3)
26 public static readonly BindableProperty TextColorProperty = TextElement.TextColorProperty; 163 get { return (Color)GetValue(TextElement.TextColorProperty); } 164 set { SetValue(TextElement.TextColorProperty, value); }
Picker\Picker.cs (3)
21 public static readonly BindableProperty TextColorProperty = TextElement.TextColorProperty; 164 get { return (Color)GetValue(TextElement.TextColorProperty); } 165 set { SetValue(TextElement.TextColorProperty, value); }
Properties\AssemblyInfo.cs (1)
96[assembly: StyleProperty("color", typeof(ITextElement), nameof(TextElement.TextColorProperty), Inherited = true)]
RadioButton\RadioButton.cs (1)
75 public static readonly BindableProperty TextColorProperty = TextElement.TextColorProperty;
Shell\SearchHandler.cs (3)
132 public static readonly BindableProperty TextColorProperty = TextElement.TextColorProperty; 140 get { return (Color)GetValue(TextElement.TextColorProperty); } 141 set { SetValue(TextElement.TextColorProperty, value); }
Span.cs (3)
49 public static readonly BindableProperty TextColorProperty = TextElement.TextColorProperty; 54 get { return (Color)GetValue(TextElement.TextColorProperty); } 55 set { SetValue(TextElement.TextColorProperty, value); }
TimePicker\TimePicker.cs (3)
17 public static readonly BindableProperty TextColorProperty = TextElement.TextColorProperty; 61 get { return (Color)GetValue(TextElement.TextColorProperty); } 62 set { SetValue(TextElement.TextColorProperty, value); }