SSPC-Tester/SSPCTester.UI/Views/CurvePopupWindow.xaml.cs
2026-06-30 12:10:29 +08:00

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