SSPC-Tester/SSPCTester.UI/Views/CurvePopupWindow.xaml.cs

16 lines
334 B
C#
Raw Normal View History

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