mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-02 15:50:51 +08:00
18 lines
453 B
C#
18 lines
453 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows;
|
|
|
|
namespace Util.DiagramDesigner
|
|
{
|
|
public struct ConnectorInfo
|
|
{
|
|
public double DesignerItemLeft { get; set; }
|
|
public double DesignerItemTop { get; set; }
|
|
public Size DesignerItemSize { get; set; }
|
|
public Point Position { get; set; }
|
|
public ConnectorOrientation Orientation { get; set; }
|
|
}
|
|
}
|