Julien Lebosquain
3 years ago
No known key found for this signature in database
GPG Key ID: 1833CAD10ACC46FD
1 changed files with
2 additions and
1 deletions
-
src/Avalonia.Controls/Documents/Inline.cs
|
|
|
@ -10,10 +10,11 @@ namespace Avalonia.Controls.Documents |
|
|
|
/// </summary>
|
|
|
|
public abstract class Inline : TextElement |
|
|
|
{ |
|
|
|
// TODO12: change the field type to an AttachedProperty for consistency (breaking change)
|
|
|
|
/// <summary>
|
|
|
|
/// AvaloniaProperty for <see cref="TextDecorations" /> property.
|
|
|
|
/// </summary>
|
|
|
|
public static readonly AttachedProperty<TextDecorationCollection?> TextDecorationsProperty = |
|
|
|
public static readonly StyledProperty<TextDecorationCollection?> TextDecorationsProperty = |
|
|
|
AvaloniaProperty.RegisterAttached<Inline, Inline, TextDecorationCollection?>( |
|
|
|
nameof(TextDecorations), |
|
|
|
inherits: true); |
|
|
|
|