InkForge/app/InkForge.Desktop/Views/WorkspacesView.axaml.cs
2024-02-26 18:08:18 +01:00

16 lines
288 B
C#

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>();
}
}