6 references to Bold
Microsoft.Maui.Controls (6)
FontAttributes.cs (3)
73
if ((attr & FontAttributes.
Bold
) == FontAttributes.
Bold
)
74
parts.Add(nameof(FontAttributes.
Bold
));
FontExtensions.cs (2)
11
var bold = (attributes & FontAttributes.
Bold
) != 0;
18
FontAttributes attributes = font.Weight == FontWeight.Bold ? FontAttributes.
Bold
: FontAttributes.None;
Shell\BaseShellItem.cs (1)
508
defaultLabelClass.Setters.Add(new Setter { Property = Label.FontAttributesProperty, Value = FontAttributes.
Bold
});