如何使用C#如何实现visio中动态连接线的效果
本人想做一个类似于visio中绘制流程图的软件,想要实现动态连接线的效果,请哪位易做图指点一二!谢谢 --------------------编程问答-------------------- 参考一下 工作流中的图 --------------------编程问答-------------------- http://cdmd.cnki.com.cn/Article/CDMD-10701-2007214350.htmhttp://wenku.baidu.com/view/e8431e68af1ffc4ffe47ac7b.html --------------------编程问答-------------------- Cell beginShapeCell = shape.get_CellsSRC(1, 1, 0);
Cell beginLineCell = shapeLine.get_CellsU("BeginX");
Cell endLineCell = shapeLine.get_CellsU("EndX");
beginLineCell.GlueTo(beginShapeCell);
补充:.NET技术 , C#