using System.Windows; using SSPCTester.UI.ViewModels; namespace SSPCTester.UI.Views; public partial class CurvePopupWindow : Window { public CurvePopupWindow(CurveTestViewModel vm) { InitializeComponent(); DataContext = vm; } private void Close_Click(object sender, RoutedEventArgs e) => Close(); }