RecipeFullScreenEditor.xaml.cs 489 B

123456789101112131415161718192021
  1. using System.Windows;
  2. namespace MECF.Framework.UI.Client.CenterViews.Editors
  3. {
  4. /// <summary>
  5. /// RecipeFullScreenEditor.xaml 的交互逻辑
  6. /// </summary>
  7. public partial class RecipeFullScreenEditor : Window
  8. {
  9. public RecipeFullScreenEditor()
  10. {
  11. InitializeComponent();
  12. }
  13. private void Window_Closing(object sender, System.ComponentModel.CancelEventArgs e)
  14. {
  15. this.DialogResult = true;
  16. }
  17. }
  18. }