using System.Windows; namespace MECF.Framework.UI.Client.CenterViews.Editors { /// /// RecipeFullScreenEditor.xaml 的交互逻辑 /// public partial class RecipeFullScreenEditor : Window { public RecipeFullScreenEditor() { InitializeComponent(); } private void Window_Closing(object sender, System.ComponentModel.CancelEventArgs e) { this.DialogResult = true; } } }