Browse Source

Fix TextBox property name registrations

pull/8114/head
Wiesław Šoltés 4 years ago
parent
commit
65ed75970d
  1. 6
      src/Avalonia.Controls/TextBox.cs

6
src/Avalonia.Controls/TextBox.cs

@ -55,13 +55,13 @@ namespace Avalonia.Controls
AvaloniaProperty.Register<TextBox, char>(nameof(PasswordChar));
public static readonly StyledProperty<IBrush?> SelectionBrushProperty =
AvaloniaProperty.Register<TextBox, IBrush?>(nameof(SelectionBrushProperty));
AvaloniaProperty.Register<TextBox, IBrush?>(nameof(SelectionBrush));
public static readonly StyledProperty<IBrush?> SelectionForegroundBrushProperty =
AvaloniaProperty.Register<TextBox, IBrush?>(nameof(SelectionForegroundBrushProperty));
AvaloniaProperty.Register<TextBox, IBrush?>(nameof(SelectionForegroundBrush));
public static readonly StyledProperty<IBrush?> CaretBrushProperty =
AvaloniaProperty.Register<TextBox, IBrush?>(nameof(CaretBrushProperty));
AvaloniaProperty.Register<TextBox, IBrush?>(nameof(CaretBrush));
public static readonly DirectProperty<TextBox, int> SelectionStartProperty =
AvaloniaProperty.RegisterDirect<TextBox, int>(

Loading…
Cancel
Save