@ -26,9 +26,11 @@ namespace Avalonia.Diagnostics.ViewModels
public AvaloniaProperty Property { get ; }
public override object Key = > Property ;
public override string Name { get ; }
public bool IsAttached = > Property . IsAttached ;
public override bool? IsAttached = >
Property . IsAttached ;
public string Priority = > _ priority ;
public override string Priority = >
_ priority ;
public override string Type = > _ type ;
@ -69,7 +71,7 @@ namespace Avalonia.Diagnostics.ViewModels
if ( val ! = null )
{
RaiseAndSetIfChanged ( ref _ priority , val . Priority . ToString ( ) , nameof ( Priority ) ) ;
RaiseAndSetIfChanged ( ref _ group , IsAttached ? "Attached Properties" : "Properties" , nameof ( Group ) ) ;
RaiseAndSetIfChanged ( ref _ group , IsAttached = = true ? "Attached Properties" : "Properties" , nameof ( Group ) ) ;
}
else
{