2013-04-25 33 views
3

我有看或多或少目的如下:对象的C#流程图

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

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

回答

0

您还没有指定,但如果你使用WPF,请看看Graph#。我一直在使用它一段时间,并且它一点也不差。

+0

谢谢你会看看 – user1035217 2013-04-26 11:03:44

+0

当然,很高兴我能帮上忙。 – 2013-04-26 11:06:14