26 references to TextColorProperty
Microsoft.Maui.Controls (26)
Button\Button.cs (3)
47
public static readonly BindableProperty TextColorProperty = TextElement.
TextColorProperty
;
231
get { return (Color)GetValue(TextElement.
TextColorProperty
); }
232
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)
29
public static readonly BindableProperty TextColorProperty = TextElement.
TextColorProperty
;
91
get { return (Color)GetValue(TextElement.
TextColorProperty
); }
92
set { SetValue(TextElement.
TextColorProperty
, value); }
InputView\InputView.cs (1)
38
public static readonly BindableProperty TextColorProperty = TextElement.
TextColorProperty
;
Label\Label.cs (3)
24
public static readonly BindableProperty TextColorProperty = TextElement.
TextColorProperty
;
161
get { return (Color)GetValue(TextElement.
TextColorProperty
); }
162
set { SetValue(TextElement.
TextColorProperty
, value); }
Picker\Picker.cs (3)
19
public static readonly BindableProperty TextColorProperty = TextElement.
TextColorProperty
;
162
get { return (Color)GetValue(TextElement.
TextColorProperty
); }
163
set { SetValue(TextElement.
TextColorProperty
, value); }
Properties\AssemblyInfo.cs (1)
96
[assembly: StyleProperty("color", typeof(ITextElement), nameof(TextElement.
TextColorProperty
), Inherited = true)]
RadioButton\RadioButton.cs (1)
73
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)
15
public static readonly BindableProperty TextColorProperty = TextElement.
TextColorProperty
;
59
get { return (Color)GetValue(TextElement.
TextColorProperty
); }
60
set { SetValue(TextElement.
TextColorProperty
, value); }