我的对象或多或少如下所示:
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的流程图库,允许我将对象放置在流程图上,并将属性设置为流程图上的特定对象并连接这些对象?
我想保持这个应用程序的开源,所以商业解决方案对我来说不是一个选择……
发布于 2013-04-25 17:00:08
您还没有指定,但是如果您使用的是WPF,请查看Graph#。我自己已经用了一段时间了,一点也不差。
https://stackoverflow.com/questions/16210290
复制相似问题