mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-27 03:33:25 +08:00
工具栏整理
This commit is contained in:
@@ -9,7 +9,7 @@ using AIStudio.Wpf.DiagramModels.ViewModels;
|
||||
using AIStudio.Wpf.Mind;
|
||||
using AIStudio.Wpf.Mind.ViewModels;
|
||||
|
||||
namespace AIStudio.Wpf.Flowchart.Models
|
||||
namespace AIStudio.Wpf.Mind.Models
|
||||
{
|
||||
|
||||
public class MindNodeModel : DiagramNode
|
||||
|
||||
41
AIStudio.Wpf.Mind/Models/MindTheme.cs
Normal file
41
AIStudio.Wpf.Mind/Models/MindTheme.cs
Normal file
@@ -0,0 +1,41 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace AIStudio.Wpf.Mind.Models
|
||||
{
|
||||
public enum MindTheme
|
||||
{
|
||||
[Description("天空蓝")]
|
||||
SkyBlue,
|
||||
[Description("紧凑蓝")]
|
||||
SkyBlueMini,
|
||||
[Description("文艺绿")]
|
||||
LiteratureGreen,
|
||||
[Description("紧凑绿")]
|
||||
LiteratureGreenMini,
|
||||
[Description("脑残粉")]
|
||||
BrainDeadPink,
|
||||
[Description("紧凑粉")]
|
||||
BrainDeadPinkMini,
|
||||
[Description("浪漫紫")]
|
||||
RomanticPurple,
|
||||
[Description("紧凑紫")]
|
||||
RomanticPurpleMini,
|
||||
[Description("清新红")]
|
||||
FreshRed,
|
||||
[Description("紧凑红")]
|
||||
FreshRedMini,
|
||||
[Description("泥土黄")]
|
||||
EarthyYellow,
|
||||
[Description("紧凑黄")]
|
||||
EarthyYellowMini,
|
||||
[Description("冷光黄")]
|
||||
CoolLightYellow,
|
||||
[Description("紧凑黄")]
|
||||
CoolLightYellowMini,
|
||||
}
|
||||
}
|
||||
23
AIStudio.Wpf.Mind/Models/MindType.cs
Normal file
23
AIStudio.Wpf.Mind/Models/MindType.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Text;
|
||||
|
||||
namespace AIStudio.Wpf.Mind.Models
|
||||
{
|
||||
public enum MindType
|
||||
{
|
||||
[Description("思维导图")]
|
||||
Mind,
|
||||
[Description("目录组织图")]
|
||||
Directory,
|
||||
[Description("鱼骨头图")]
|
||||
FishBone,
|
||||
[Description("逻辑结构图")]
|
||||
Logical,
|
||||
[Description("组织结构图")]
|
||||
Organizational,
|
||||
[Description("天盘图(暂未完成)")]
|
||||
Celestial
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user