Item Attributes

This commit is contained in:
2022-04-01 21:46:55 +02:00
parent 70afc3880e
commit 7ff3898bd9
22 changed files with 178 additions and 40 deletions

View File

@@ -29,6 +29,10 @@ namespace FileTime.Core.Services
public FullName? Parent => null;
public DateTime? CreatedAt => null;
public string? Attributes => null;
protected ContentProviderBase(string name)
{
DisplayName = Name = name;

View File

@@ -40,11 +40,6 @@ namespace FileTime.Core.Services
)
.Merge(Constants.MaximumObservableMergeOperations);
CurrentSelectedItem = CurrentLocation.Select(GetSelectedItemByLocation).Merge(_currentSelectedItem).Throttle(TimeSpan.FromMilliseconds(500));
CurrentItems.Subscribe(c =>
{
;
});
}
public void Init(IContainer currentLocation)