InkForge/app/InkForge.Desktop/ViewModels/MainViewModel.cs

17 lines
308 B
C#
Raw Permalink Normal View History

2024-05-02 21:44:13 +02:00
using CommunityToolkit.Mvvm.ComponentModel;
2024-03-17 22:27:01 +01:00
using Dock.Model.Core;
namespace InkForge.Desktop.ViewModels;
2024-05-02 21:44:13 +02:00
public class MainViewModel : ObservableObject
2024-03-17 22:27:01 +01:00
{
public IDock Layout { get; }
public MainViewModel(InkForgeFactory factory)
{
Layout = factory.CreateLayout();
factory.InitLayout(Layout);
}
}