创建流程图的语言

发布于 2024-08-11 05:09:52 字数 1536 浏览 5 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

随遇而安 2024-08-18 05:09:52

看看 PlantUml - 特别是他们的 活动状态图。

作为示例(来自他们的网站)生成以下图像:

@startuml

start

if (graphviz installed?) then (yes)
  :process all\ndiagrams;
else (no)
  :process only
  __sequence__ and __activity__ diagrams;
endif

stop

@enduml

在此处输入图像描述

Have a look at PlantUml - in particular their Activity State diagrams.

As an example (from their site) produces the image below:

@startuml

start

if (graphviz installed?) then (yes)
  :process all\ndiagrams;
else (no)
  :process only
  __sequence__ and __activity__ diagrams;
endif

stop

@enduml

enter image description here

早茶月光 2024-08-18 05:09:52

MindFusion 提供您可以通过编程方式访问的图表组件。

他们提供 WPF 和 WinForms 组件:

过去我在 DSL 编辑器项目中使用过他们的 WPF 组件。基于 DSL 编辑器中的工具箱拖放,调用 WPFDiagram 在绘图表面上创建形状。

MindFusion offers components for diagramming that you can access programmatically.

They offer components for WPF and WinForms:

In the past I've used their WPF component on a DSL editor project. Based on Toolbox drag-and-drops in the DSL editor, WPFDiagram was called to create shapes on the Drawing Surface.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文