添加 MX-PD-盘古 项目文件

将 MX-PD-盘古 - new 目录下的所有文件添加到主仓库
This commit is contained in:
Shi.Ji
2026-05-18 11:43:09 +08:00
parent 03632a379d
commit e31d3560bb
739 changed files with 99783 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
using MainShell.Recipe.Models;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MainShell.Recipe.ViewModel
{
public interface IRecipeViewModel
{
RecipeManager RecipeManager { get; }
ObservableCollection<RecipeWrap> RecipeWraps { get; }
RecipeWrap SelectedRecipeWrap { get; set; }
void SyncSelectionFromActiveRecipe();
RecipeButtonGroupViewModel RecipeButtonGroupViewModel { get;}
bool HideRecipePanel { get; set; }
bool CanCopyRecipe { get; }
bool CanImportRecipe { get; }
bool CanExportRecipe { get; }
bool HasUnsavedChanges { get; }
string CurrentRecipeDisplayName { get; }
bool TryLeaveCurrentRecipeContext();
void SaveCurrentRecipeSilently();
void OnCreateNewRecipe(object sender, EventArgs eventArgs);
void OnDeleteRecipe(object sender, EventArgs eventArgs);
void OnCopyRecipe(object sender, EventArgs eventArgs);
void OnApplyRecipe(object sender, EventArgs eventArgs);
void OnImportRecipe(object sender, EventArgs eventArgs);
void OnSaveRecipe(object sender, EventArgs eventArgs);
void OnExportRecipe(object sender, EventArgs eventArgs);
void OnReNameRecipe(object sender, EventArgs eventArgs);
void OnClearRecipe(object sender, EventArgs eventArgs);
}
}