InkForge/app/InkForge.Desktop/Views/WorkspacesView.axaml.cs

17 lines
288 B
C#
Raw Normal View History

2024-02-26 18:08:18 +01:00
using Avalonia.Controls;
using InkForge.Desktop.ViewModels;
using Splat;
namespace InkForge.Desktop.Views;
public partial class WorkspacesView : UserControl
{
public WorkspacesView()
{
InitializeComponent();
DataContext = Locator.Current.GetService<WorkspacesViewModel>();
}
}