mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
15 lines
292 B
C#
15 lines
292 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
using AIStudio.Wpf.Mind.ViewModels;
|
|||
|
|
|
|||
|
|
namespace AIStudio.Wpf.Mind.Helpers
|
|||
|
|
{
|
|||
|
|
public interface IMindLayout
|
|||
|
|
{
|
|||
|
|
void Appearance(MindNode mindNode);
|
|||
|
|
void LayoutUpdated(MindNode mindNode);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|