2013-04-25 31 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