XAML 流程图序列化 - 图形连接器 .net 4.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?
Thanks
This is my Corresponding XAML (before loading with Visual Studio):
http://pastebin.com/s3DVQ3hK
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您没有添加 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.