C#对象流程图

时间:2013-04-25 08:46:26

标签: c# .net graph

我的对象看起来或多或少如下:

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; }

}

对象通过connectionInconnectionOut属性相互连接。我需要做的是让用户使用流程图环境将对象放在流程图上,然后连接它们。是否有任何.NET流程图库,允许我在流程图上放置对象,并将属性设置为流程图上的特定对象并连接对象?

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

1 个答案:

答案 0 :(得分:0)

您尚未指定,但如果您使用的是WPF,请查看Graph#。我一直在使用它一段时间,它一点也不差。