11 references to LabelHandler
Microsoft.Maui.Controls (11)
Hosting\AppHostBuilderExtensions.cs (1)
76
handlersCollection.AddHandler<Label,
LabelHandler
>();
Label\Label.Mapper.cs (7)
19
LabelHandler
.Mapper.ReplaceMapping<Label, ILabelHandler>(nameof(TextType), MapTextType);
20
LabelHandler
.Mapper.ReplaceMapping<Label, ILabelHandler>(nameof(TextTransform), MapTextTransform);
23
LabelHandler
.Mapper.ReplaceMapping<Label, ILabelHandler>(nameof(Text), MapText);
24
LabelHandler
.Mapper.ReplaceMapping<Label, ILabelHandler>(nameof(FormattedText), MapText);
26
LabelHandler
.Mapper.ReplaceMapping<Label, ILabelHandler>(nameof(LineBreakMode), MapLineBreakMode);
27
LabelHandler
.Mapper.ReplaceMapping<Label, ILabelHandler>(nameof(MaxLines), MapMaxLines);
51
public static void MapTextType(
LabelHandler
handler, Label label) =>
Label\Label.Standard.cs (3)
13
public static void MapText(
LabelHandler
handler, Label label) => MapText((ILabelHandler)handler, label);
14
public static void MapLineBreakMode(
LabelHandler
handler, Label label) => MapLineBreakMode((ILabelHandler)handler, label);
15
public static void MapMaxLines(
LabelHandler
handler, Label label) => MapMaxLines((ILabelHandler)handler, label);