mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-03 23:56:37 +08:00
整理一下项目文件
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Windows;
|
||||
|
||||
namespace AIStudio.Wpf.DiagramDesigner
|
||||
{
|
||||
public class PartCreatedConnectionInfo : ConnectorInfoBase
|
||||
{
|
||||
public Point CurrentLocation { get; private set; }
|
||||
|
||||
public PartCreatedConnectionInfo(Point currentLocation) : base(ConnectorOrientation.None)
|
||||
{
|
||||
this.CurrentLocation = currentLocation;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user