Browse Source
Merge pull request #7783 from n-ski/routedviewhost-copypasta-fix
RoutedViewHost: Fix property registration
pull/7787/head
Jumar Macato
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/Avalonia.ReactiveUI/RoutedViewHost.cs
|
|
|
@ -62,7 +62,7 @@ namespace Avalonia.ReactiveUI |
|
|
|
/// <see cref="AvaloniaProperty"/> for the <see cref="ViewContract"/> property.
|
|
|
|
/// </summary>
|
|
|
|
public static readonly StyledProperty<string?> ViewContractProperty = |
|
|
|
AvaloniaProperty.Register<ViewModelViewHost, string?>(nameof(ViewContract)); |
|
|
|
AvaloniaProperty.Register<RoutedViewHost, string?>(nameof(ViewContract)); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Initializes a new instance of the <see cref="RoutedViewHost"/> class.
|
|
|
|
|