次のように多かれ少なかれ見えるオブジェクトがあります。
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
オブジェクトはandプロパティを介して相互に接続されconnectionOut
ます。私がする必要があるのは、ユーザーがフローチャート環境を使用してオブジェクトをフローシートに配置し、それらを接続できるようにすることです。フローシートにオブジェクトを配置し、フローシート上の特定のオブジェクトにプロパティを設定して、オブジェクトを接続できる .NET 用のフローチャート ライブラリはありますか?
このアプリケーションをオープンソースのままにしておきたいので、商用ソリューションは私にとって選択肢ではありません...