mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
20 lines
601 B
C#
20 lines
601 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Windows.Media;
|
|
using AIStudio.Wpf.DiagramDesigner;
|
|
using AIStudio.Wpf.Mind.Models;
|
|
using AIStudio.Wpf.Mind.ViewModels;
|
|
|
|
namespace AIStudio.Wpf.Mind.Helpers
|
|
{
|
|
public interface IMindLayout
|
|
{
|
|
void Appearance(MindNode mindNode);
|
|
void Appearance(MindNode mindNode, MindTheme mindTheme, bool initAppearance);
|
|
ConnectionViewModel GetOrSetConnectionViewModel(MindNode source, MindNode sink, ConnectionViewModel connector = null);
|
|
void LayoutUpdated(MindNode mindNode);
|
|
|
|
}
|
|
}
|