mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
27 lines
615 B
C#
27 lines
615 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows;
|
|
using AIStudio.Wpf.DiagramDesigner.Geometrys;
|
|
|
|
namespace AIStudio.Wpf.DiagramDesigner
|
|
{
|
|
public class PartCreatedConnectorInfo : ConnectorInfoBase
|
|
{
|
|
private PointBase position;
|
|
public override PointBase Position
|
|
{
|
|
get
|
|
{
|
|
return position;
|
|
}
|
|
}
|
|
|
|
public PartCreatedConnectorInfo(double X, double Y) : base(ConnectorOrientation.None)
|
|
{
|
|
this.position = new PointBase(X, Y);
|
|
}
|
|
}
|
|
}
|