16 lines
334 B
C#
16 lines
334 B
C#
|
|
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();
|
||
|
|
}
|