54 lines
1.4 KiB
C#
54 lines
1.4 KiB
C#
|
|
using Models.Models;
|
|||
|
|
using SamplePre.UIWpf.BaseWindows;
|
|||
|
|
using SamplePreSystem.UI.BaseControls;
|
|||
|
|
using SamplePreSystem.UI.ViewModel.Child;
|
|||
|
|
using SamplePreSystem.UI.ViewModel.SopManager;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Data;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
using System.Windows;
|
|||
|
|
using System.Windows.Controls;
|
|||
|
|
using System.Windows.Data;
|
|||
|
|
using System.Windows.Documents;
|
|||
|
|
using System.Windows.Input;
|
|||
|
|
using System.Windows.Media;
|
|||
|
|
using System.Windows.Media.Imaging;
|
|||
|
|
using System.Windows.Shapes;
|
|||
|
|
|
|||
|
|
namespace SamplePre.UIWpf.ParamManager.chirld
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// NewStandParmWindow.xaml 的交互逻辑
|
|||
|
|
/// </summary>
|
|||
|
|
public partial class NewActionWindow : BaseWindow
|
|||
|
|
{
|
|||
|
|
ActionManagerViewModel actionManagerVM;
|
|||
|
|
public NewActionWindow(ActionManagerViewModel viewModel)
|
|||
|
|
{
|
|||
|
|
InitializeComponent();
|
|||
|
|
|
|||
|
|
this.DataContext = new NewActionViewModel();
|
|||
|
|
|
|||
|
|
this.actionManagerVM = viewModel;
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private void btnOK_Click(object sender, RoutedEventArgs e)
|
|||
|
|
{
|
|||
|
|
var vm = this.DataContext as NewActionViewModel;
|
|||
|
|
|
|||
|
|
if (vm.SaveNewData() < 0) return;
|
|||
|
|
|
|||
|
|
this.DialogResult = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private void btnCancel_Click(object sender, RoutedEventArgs e)
|
|||
|
|
{
|
|||
|
|
this.DialogResult = false;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|