我的对象看起来或多或少如下:
public class Object1
{
public string connectionIn1 { get; set; }
public string connectionIn2 { get; set; }
public string connectionIn3 { get; set; }
public string connectionOut1 { get; set; }
public string connectionOut2 { get; set; }
public string connectionOut3 { get; set; }
public dynamic property1 { get; set; }
public dynamic property2 { get; set; }
public dynamic property3 { get; set; }
}
对象通过connectionIn
和connectionOut
属性相互连接。我需要做的是让用户使用流程图环境将对象放在流程图上,然后连接它们。是否有任何.NET流程图库,允许我在流程图上放置对象,并将属性设置为流程图上的特定对象并连接对象?
我想保持这个应用程序的开源,所以商业解决方案不适合我......