XAML 流程图序列化 - 图形连接器 .net 4.0

发布于 2024-12-10 17:47:25 字数 591 浏览 0 评论 0原文

Windows Workflow Foundation .Net 4.0 和我正在使用代码创建一些自定义活动和使用它的流程图。

最后,我使用以下命令序列化流程图: XamlServices.Save(@"文件名.xaml", 工作流);

其中“Workflow”是使用基本构造函数创建的 System.Activities.Statements.FlowChart 对象,所有节点均通过“Next”字段连接。

该过程似乎有效,但当我获得输出时,将其视为文本,我得到一个没有 xmlns 声明和图形元素(例如 )的工作流,当我使用 Visual Studio 加载它时,设计器以错误的模式添加图形。 我的意思是,每个活动都使用相同的图形点与前一个和下一个活动连接。

我哪里错了? 我的渲染.. :(

谢谢

这是我相应的 XAML(在使用 Visual Studio 加载之前): http://pastebin.com/s3DVQ3hK

Windows Workflow Foundation .Net 4.0 and I'm creating using code some custom activities and a flowchart that use it.

At the end I serialize the flowchart with this command:
XamlServices.Save(@"filename.xaml", Workflow);

where "Workflow" is a System.Activities.Statements.FlowChart object crated using basic constructor with all the nodes connected by their "Next" field.

The process seems to Works but whene I get the output, viewing it as text I get a Workflow without xmlns declarations and without graphic elements (such as ) and when I load it with Visual Studio, the designer adds the graphic in the wrong mode.
I mean that every activity is connect with the previous and with the next using the same graphic point.

Where is that I'm wrong?
My rendering.. :(

Thanks

This is my Corresponding XAML (before loading with Visual Studio):
http://pastebin.com/s3DVQ3hK

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

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

发布评论

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

评论(1

雾里花 2024-12-17 17:47:25

您没有添加 XAML,但活动的顺序似乎错误。所以最后一个指向前一个,等等一直回到开始。

You didn't add the XAML but it looks like you have the activities in the wrong order. So the last points to the previous etc all the way back to the start.

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