mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-11 12:10:49 +08:00
58 lines
977 B
C#
58 lines
977 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using AIStudio.Wpf.DiagramDesigner;
|
|
|
|
namespace AIStudio.Wpf.Mind.ViewModels
|
|
{
|
|
public interface IMindDiagramViewModel : IDiagramViewModel
|
|
{
|
|
MindType MindType
|
|
{
|
|
get;set;
|
|
}
|
|
|
|
SimpleCommand AddParentCommand
|
|
{
|
|
get;
|
|
}
|
|
|
|
SimpleCommand AddChildCommand
|
|
{
|
|
get;
|
|
}
|
|
|
|
SimpleCommand AddPeerCommand
|
|
{
|
|
get;
|
|
}
|
|
|
|
SimpleCommand DeleteSelfCommand
|
|
{
|
|
get;
|
|
}
|
|
|
|
SimpleCommand MoveForwardCommand
|
|
{
|
|
get;
|
|
}
|
|
|
|
SimpleCommand MoveBackCommand
|
|
{
|
|
get;
|
|
}
|
|
|
|
SimpleCommand ChangeMindTypeCommand
|
|
{
|
|
get;
|
|
}
|
|
|
|
SimpleCommand ChangeMindThemeCommand
|
|
{
|
|
get;
|
|
}
|
|
}
|
|
}
|