用于流程图的 WWF 或 WPF?
我希望能够使用流程图来呈现我的数据。我可以使用 wpf 来执行此操作,但我不想对所有箭头、连接器等进行编码 - 如果可能的话,我想使用库。
我还可以使用 Windows 工作流基础以任何方式执行此操作吗?这会有帮助吗?我的印象是,虽然 WWF 是工作流程,但它更多地与流程有关,而不是呈现数据。
看来我可能必须获得第三方控件才能做到这一点......任何建议 - 该组件应该至少能够绘制流程图!
谢谢
I want to be able to present my data using a flowchart. I can use wpf to do this, but I dont want to have to code all the arrows, connectors etc - I would like to use a library if possible..
Also could I use windows workflow foundation to do this in any way? Would this help? I get the impression although WWF is workflow, its more to do with the process as opposed to presenting data.
It appears that I might have to obtain a third party control to do this....any recommendations - the component should be able to draw a flowchart at the minimum!
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您不创建工作流程,请坚持使用 WPF 并查看 http://www .codeproject.com/KB/WPF/WPFDiagramDesigner_Part4.aspx 这篇代码项目文章应该为您想要做的事情提供一个良好的起点。
If your not creating a work flow then stick with WPF and take a look at http://www.codeproject.com/KB/WPF/WPFDiagramDesigner_Part4.aspx this code project article should give you a healthy starting point for what you want to do.
为什么不使用 Visio 这样的工具来呈现数据,而不是从头开始创建一个工具?
Why don't you use a tool like Visio to present your data instead of creating a tool from scratch?
WWF 无意绘制任何东西。所以无论如何它都无济于事。自己编写绘图代码或寻找第三方库来完成它取决于您。我会选择后者,因为曾经我尝试过前者。我花费大量的时间和精力来把每件事做好。
WWF is not intended to draw anything. So it will not help anyway. Writing the drawing code yourself or finding a 3rd party library to do it is up to you. I would have chosen the latter, because once I tried to do the former. I takes a lot of time and effort to do everything right.
我使用 Visifire 来绘制图表,它有一些非常棒的视觉效果,而且相当直观且易于使用...试一试:
visifire.codeplex.com
希望有帮助,
Aj
I've used Visifire for charting, it's got some pretty great visuals and it's reasonably intuitive and easy to use...give it a go:
visifire.codeplex.com
Hope it helps,
Aj