70 references to FontAttributes
Microsoft.Maui.Controls (70)
Button\Button.cs (4)
287
public
FontAttributes
FontAttributes
289
get { return (
FontAttributes
)GetValue(FontAttributesProperty); }
392
void IFontElement.OnFontAttributesChanged(
FontAttributes
oldValue,
FontAttributes
newValue) =>
DatePicker\DatePicker.cs (4)
103
public
FontAttributes
FontAttributes
105
get { return (
FontAttributes
)GetValue(FontAttributesProperty); }
139
void IFontElement.OnFontAttributesChanged(
FontAttributes
oldValue,
FontAttributes
newValue) =>
FontAttributes.cs (16)
35
return
FontAttributes
.None;
37
FontAttributes
attributes =
FontAttributes
.None;
53
static
FontAttributes
ParseSingleAttribute(string part, string originalvalue)
56
if (Enum.TryParse(part, true, out
FontAttributes
attr))
59
return
FontAttributes
.None;
61
return
FontAttributes
.Italic;
63
throw new InvalidOperationException(string.Format("Cannot convert \"{0}\" into {1}", originalvalue, typeof(
FontAttributes
)));
68
if (value is not
FontAttributes
attr)
70
if (attr ==
FontAttributes
.None)
73
if ((attr &
FontAttributes
.Bold) ==
FontAttributes
.Bold)
74
parts.Add(nameof(
FontAttributes
.Bold));
75
if ((attr &
FontAttributes
.Italic) ==
FontAttributes
.Italic)
76
parts.Add(nameof(
FontAttributes
.Italic));
FontElement.cs (4)
27
BindableProperty.Create("FontAttributes", typeof(
FontAttributes
), typeof(IFontElement),
FontAttributes
.None,
47
=> ((IFontElement)bindable).OnFontAttributesChanged((
FontAttributes
)oldValue, (
FontAttributes
)newValue);
FontExtensions.cs (10)
9
public static Font WithAttributes(this Font font,
FontAttributes
attributes)
11
var bold = (attributes &
FontAttributes
.Bold) != 0;
12
var italic = (attributes &
FontAttributes
.Italic) != 0;
16
public static
FontAttributes
GetFontAttributes(this Font font)
18
FontAttributes
attributes = font.Weight == FontWeight.Bold ?
FontAttributes
.Bold :
FontAttributes
.None;
21
if (attributes ==
FontAttributes
.None)
22
attributes =
FontAttributes
.Italic;
24
attributes = attributes |
FontAttributes
.Italic;
IFontElement.cs (3)
10
FontAttributes
FontAttributes { get; }
23
void OnFontAttributesChanged(
FontAttributes
oldValue,
FontAttributes
newValue);
InputView\InputView.cs (4)
198
public
FontAttributes
FontAttributes
200
get { return (
FontAttributes
)GetValue(FontAttributesProperty); }
246
void IFontElement.OnFontAttributesChanged(
FontAttributes
oldValue,
FontAttributes
newValue) =>
Label\Label.cs (4)
180
public
FontAttributes
FontAttributes
182
get { return (
FontAttributes
)GetValue(FontAttributesProperty); }
245
void IFontElement.OnFontAttributesChanged(
FontAttributes
oldValue,
FontAttributes
newValue) =>
Picker\Picker.cs (4)
74
public
FontAttributes
FontAttributes
76
get { return (
FontAttributes
)GetValue(FontAttributesProperty); }
120
void IFontElement.OnFontAttributesChanged(
FontAttributes
oldValue,
FontAttributes
newValue) =>
RadioButton\RadioButton.cs (4)
159
public
FontAttributes
FontAttributes
161
get { return (
FontAttributes
)GetValue(FontAttributesProperty); }
250
void IFontElement.OnFontAttributesChanged(
FontAttributes
oldValue,
FontAttributes
newValue) =>
Shell\BaseShellItem.cs (1)
508
defaultLabelClass.Setters.Add(new Setter { Property = Label.FontAttributesProperty, Value =
FontAttributes
.Bold });
Shell\SearchHandler.cs (4)
192
public
FontAttributes
FontAttributes
194
get { return (
FontAttributes
)GetValue(FontAttributesProperty); }
241
void IFontElement.OnFontAttributesChanged(
FontAttributes
oldValue,
FontAttributes
newValue)
Span.cs (4)
106
public
FontAttributes
FontAttributes
108
get { return (
FontAttributes
)GetValue(FontElement.FontAttributesProperty); }
164
void IFontElement.OnFontAttributesChanged(
FontAttributes
oldValue,
FontAttributes
newValue)
TimePicker\TimePicker.cs (4)
78
public
FontAttributes
FontAttributes
80
get { return (
FontAttributes
)GetValue(FontAttributesProperty); }
126
void IFontElement.OnFontAttributesChanged(
FontAttributes
oldValue,
FontAttributes
newValue) =>