mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-19 16:06:35 +08:00
17 lines
412 B
C#
17 lines
412 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using AIStudio.Wpf.DiagramDesigner;
|
|
using AIStudio.Wpf.Mind.ViewModels;
|
|
|
|
namespace AIStudio.Wpf.Mind.Helpers
|
|
{
|
|
public interface IMindLayout
|
|
{
|
|
void Appearance(MindNode mindNode);
|
|
ConnectionViewModel GetConnectionViewModel(MindNode source, MindNode sink);
|
|
void LayoutUpdated(MindNode mindNode);
|
|
|
|
}
|
|
}
|