mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-22 09:26:35 +08:00
Mind Editoe
This commit is contained in:
57
AIStudio.Wpf.Mind/ViewModels/IMindDiagramViewModel.cs
Normal file
57
AIStudio.Wpf.Mind/ViewModels/IMindDiagramViewModel.cs
Normal file
@@ -0,0 +1,57 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user