3

我的对象或多或少如下所示:

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 流程图库允许我将对象放置在流程图上,并将属性设置为流程图上的特定对象并连接对象?

我想保持这个应用程序开源,所以商业解决方案不是我的选择......

4

1 回答 1

0

您尚未指定,但如果您使用的是 WPF,请查看Graph#。我自己已经用了一段时间了,一点也不差。

于 2013-04-25T09:00:07.893 回答