我的对象或多或少如下所示:
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
对象通过andconnectionOut
属性相互连接。我需要做的是让用户使用流程图环境将对象放置在流程图上,并将它们连接起来。是否有任何.NET 流程图库允许我将对象放置在流程图上,并将属性设置为流程图上的特定对象并连接对象?
我想保持这个应用程序开源,所以商业解决方案不是我的选择......