Icons, Style refactor

This commit is contained in:
2022-05-16 21:48:29 +02:00
parent b260b4d58a
commit 836c39c80c
17 changed files with 1699 additions and 182 deletions

View File

@@ -6,5 +6,6 @@ namespace FileTime.App.Core.ViewModels;
public interface IElementViewModel : IItemViewModel, IInitable<IElement, ITabViewModel, ItemViewModelType>
{
IElement? Element { get; }
long? Size { get; set; }
}

View File

@@ -8,6 +8,8 @@ namespace FileTime.App.Core.ViewModels;
[ViewModel(GenerateConstructor = false)]
public partial class ElementViewModel : ItemViewModel, IElementViewModel
{
public IElement? Element => BaseItem as Element;
[Property]
private long? _size;