|
- using BPA.Helper;
- using System;
- using System.Windows;
- using System.Windows.Input;
-
- namespace BPASmartClient.FoodStationTest.View
- {
- /// <summary>
- /// DeviceMaterialParView.xaml 的交互逻辑
- /// </summary>
- public partial class NewLocalRecipeView : Window
- {
- public NewLocalRecipeView()
- {
- InitializeComponent();
- this.Close.Click += (o, e) => { this.Close(); };
- this.br.MouseLeftButtonDown += (o, e) => { if (e.LeftButton == MouseButtonState.Pressed) this.DragMove(); };
- //ActionManage.GetInstance.CancelRegister("CloseNewRemoteRecipeView");
- ActionManage.GetInstance.Register(new Action(() => { this.Close(); }), "CloseNewRemoteRecipeView", true);
- }
-
-
- }
- }
|