Migrate partition panel from Eto.Forms to Avalonia.

This commit is contained in:
2020-04-14 19:58:23 +01:00
parent 28e0f3dca3
commit 754f8d5adb
8 changed files with 206 additions and 253 deletions

View File

@@ -1,5 +1,6 @@
using System.Collections.ObjectModel;
using Aaru.CommonTypes;
using Aaru.Gui.ViewModels;
using Avalonia.Media.Imaging;
namespace Aaru.Gui.Models
@@ -12,5 +13,6 @@ namespace Aaru.Gui.Models
public Bitmap Icon { get; set; }
public ObservableCollection<FileSystemModel> FileSystems { get; }
public Partition Partition { get; set; }
public PartitionViewModel ViewModel { get; set; }
}
}