This commit is contained in:
Курнат Андрей
2026-03-14 21:20:14 +03:00
parent c2548c377b
commit 5995d4fa72
36 changed files with 5550 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
using System.Windows;
namespace XLAB
{
public partial class SpoiDirectoryWindow : Window
{
private readonly SpoiDirectoryWindowViewModel _viewModel;
public SpoiDirectoryWindow()
{
InitializeComponent();
_viewModel = new SpoiDirectoryWindowViewModel(new PsvDataService(), new DialogService(this));
DataContext = _viewModel;
}
private async void Window_Loaded(object sender, RoutedEventArgs e)
{
await _viewModel.InitializeAsync();
}
}
}