using Avalonia; using Avalonia.Controls; namespace FileTime.GuiApp.Views { public partial class ItemView : UserControl { public static readonly StyledProperty ShowAttributesProperty = AvaloniaProperty.Register(nameof(ShowAttributes), true); public bool ShowAttributes { get => GetValue(ShowAttributesProperty); set => SetValue(ShowAttributesProperty, value); } public ItemView() { InitializeComponent(); } } }