7 references to Strikethrough
Microsoft.Maui.Controls (6)
DecorableTextElement.cs (5)
41 result |= TextDecorations.Strikethrough; 57 if (td == TextDecorations.Strikethrough) 58 return nameof(TextDecorations.Strikethrough); 59 if (td == (TextDecorations.Underline & TextDecorations.Strikethrough)) 60 return $"{nameof(TextDecorations.Underline)}, {nameof(TextDecorations.Strikethrough)}";
Platform\iOS\Extensions\FormattedStringExtensions.cs (1)
104 hasStrikethrough = (textDecorations & TextDecorations.Strikethrough) != 0;
Microsoft.Maui.Controls.Compatibility (1)
iOS\Renderers\LabelRenderer.cs (1)
288 if ((textDecorations & TextDecorations.Strikethrough) == 0)