mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-21 17:06:35 +08:00
临时提交
This commit is contained in:
@@ -1,8 +1,10 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using AIStudio.Wpf.DiagramDesigner;
|
||||
using AIStudio.Wpf.DiagramDesigner.Geometrys;
|
||||
using AIStudio.Wpf.DiagramDesigner.Models;
|
||||
|
||||
namespace AIStudio.Wpf.Mind.ViewModels
|
||||
@@ -55,6 +57,10 @@ namespace AIStudio.Wpf.Mind.ViewModels
|
||||
{
|
||||
get; set;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
public class MindLevel1Node : MindNode
|
||||
@@ -78,6 +84,24 @@ namespace AIStudio.Wpf.Mind.ViewModels
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public void LayoutUpdated()
|
||||
{
|
||||
foreach(var child in Children)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
public RectangleBase Rectangle
|
||||
{
|
||||
get; set;
|
||||
}
|
||||
|
||||
public RectangleBase GetChildRectangle()
|
||||
{
|
||||
//Children.Select(p => p.Size)
|
||||
}
|
||||
}
|
||||
|
||||
public class MindLevel2Node : MindNode
|
||||
@@ -101,6 +125,11 @@ namespace AIStudio.Wpf.Mind.ViewModels
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public PointBase Offset
|
||||
{
|
||||
get; set;
|
||||
}
|
||||
}
|
||||
|
||||
public class MindLevel3Node : MindNode
|
||||
@@ -124,5 +153,10 @@ namespace AIStudio.Wpf.Mind.ViewModels
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public PointBase Offset
|
||||
{
|
||||
get; set;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user