[GUI] Add opening image to new main window.

This commit is contained in:
2025-10-25 15:56:06 +01:00
parent 8bffe8c323
commit 1d728abf2b
5 changed files with 411 additions and 6 deletions

View File

@@ -33,6 +33,7 @@
using System.Collections.ObjectModel;
using Aaru.CommonTypes.Interfaces;
using Aaru.Gui.ViewModels.Panels;
using Avalonia.Media.Imaging;
namespace Aaru.Gui.Models;
@@ -45,4 +46,5 @@ public sealed class FileSystemModel : RootModel
public IReadOnlyFilesystem ReadOnlyFilesystem { get; set; }
public FileSystemViewModel ViewModel { get; set; }
public ObservableCollection<SubdirectoryModel> Roots { get; set; }
public Bitmap Icon { get; set; }
}