工作流程设计器的问题
当我打开 xamlx 文件时,设计器会显示以下内容:
我无法修复此问题。这是 xaml:
<WorkflowService mc:Ignorable="sap" ConfigurationName="ExemptPAService" sap:VirtualizedContainerService.HintSize="516,1183" Type="Exempt"
mva:VisualBasic.Settings="Assembly references and imported namespaces serialized as XML namespaces"
有什么建议吗?
When I open a xamlx file the designer shows this:
I am having trouble fixing this. Here's the xaml:
<WorkflowService mc:Ignorable="sap" ConfigurationName="ExemptPAService" sap:VirtualizedContainerService.HintSize="516,1183" Type="Exempt"
mva:VisualBasic.Settings="Assembly references and imported namespaces serialized as XML namespaces"
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看第 0 行末尾,您会发现
Type="Exempt"
。该异常正确地通知您Type
不是WorkflowService
上的属性或依赖属性。Look at the end of Line 0, you'll find
Type="Exempt"
. The exception, rightfully, notifies you thatType
is not a property or dependency property onWorkflowService
.