Label extensions
The Label
extensions provide a series of extension methods that support configuring a Label
.
FormattedText
The FormattedText
method allows us to assign multiple Span
s to the Label.FormattedTextProperty
.
The following example demonstrates how to add multiple Span
s to a Label
using .FormattedText()
:
new Label().FormattedText(new[]
{
new Span { Text = "Here is a link to the docs: " },
new Span { Text = "https://learn.microsoft.com/", TextDecorations = TextDecorations.Underline, TextColor = Colors.Blue }
});
Samarbeta med oss på GitHub
Källan för det här innehållet finns på GitHub, där du även kan skapa och granska ärenden och pull-begäranden. Se vår deltagarguide för mer information.
.NET MAUI Community Toolkit