A cross-platform UI framework for .NET
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

15 lines
499 B

namespace Avalonia.Controls.Documents
{
/// <summary>
/// Underline element - markup helper for indicating superscript content.
/// Equivalent to a Span with TextDecorations property set to TextDecorations.Underlined.
/// Can contain other inline elements.
/// </summary>
public sealed class Underline : Span
{
static Underline()
{
TextDecorationsProperty.OverrideDefaultValue<Underline>(Media.TextDecorations.Underline);
}
}
}