mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
93 lines
1.5 KiB
C#
93 lines
1.5 KiB
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;
|
|
}
|
|
|
|
MindNode RootItem
|
|
{
|
|
get;
|
|
}
|
|
|
|
SimpleCommand AddParentCommand
|
|
{
|
|
get;
|
|
}
|
|
|
|
SimpleCommand AddChildCommand
|
|
{
|
|
get;
|
|
}
|
|
|
|
SimpleCommand AddPeerCommand
|
|
{
|
|
get;
|
|
}
|
|
|
|
SimpleCommand DeleteSelfCommand
|
|
{
|
|
get;
|
|
}
|
|
|
|
SimpleCommand MoveForwardCommand
|
|
{
|
|
get;
|
|
}
|
|
|
|
SimpleCommand MoveBackCommand
|
|
{
|
|
get;
|
|
}
|
|
|
|
SimpleCommand ChangeMindTypeCommand
|
|
{
|
|
get;
|
|
}
|
|
|
|
SimpleCommand ChangeMindThemeCommand
|
|
{
|
|
get;
|
|
}
|
|
|
|
SimpleCommand Expand2Level1Command
|
|
{
|
|
get;
|
|
}
|
|
|
|
SimpleCommand Expand2Level2Command
|
|
{
|
|
get;
|
|
}
|
|
|
|
SimpleCommand Expand2Level3Command
|
|
{
|
|
get;
|
|
}
|
|
|
|
SimpleCommand Expand2Level4Command
|
|
{
|
|
get;
|
|
}
|
|
|
|
SimpleCommand Expand2Level5Command
|
|
{
|
|
get;
|
|
}
|
|
|
|
SimpleCommand Expand2Level6Command
|
|
{
|
|
get;
|
|
}
|
|
}
|
|
}
|