mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-01 22:56:35 +08:00
18 lines
492 B
C#
18 lines
492 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using AIStudio.Wpf.DiagramDesigner.Geometry;
|
|
|
|
namespace AIStudio.Wpf.DiagramDesigner
|
|
{
|
|
public struct ConnectorInfo
|
|
{
|
|
public double DesignerItemLeft { get; set; }
|
|
public double DesignerItemTop { get; set; }
|
|
public SizeBase DesignerItemSize { get; set; }
|
|
public PointBase Position { get; set; }
|
|
public ConnectorOrientation Orientation { get; set; }
|
|
}
|
|
}
|