Files
Prog4_Beadando/WD7UVN_SzTGUI_2023242.Client.WPF/Windows/Create/CreateNewService.xaml.cs

17 lines
438 B
C#

using System;
using System.Windows;
using WD7UVN_SzTGUI_2023242.Client.WPF.ViewModels;
namespace WD7UVN_SzTGUI_2023242.Client.WPF.Windows
{
public partial class CreateNewService : Window
{
public CreateNewService(CreateNewServiceViewModel viewModel)
{
InitializeComponent();
DataContext = viewModel;
viewModel.CloseAction = new Action(() => this.Close());
}
}
}