Windows 工作流的依赖属性
我遇到的情况是,我有一个使用活动库中的自定义活动的工作流程。该工作流使用从自定义活动 1 移动到自定义活动 2 的自定义活动。在自定义活动 1 中,我创建了一个依赖属性,该属性通过自定义属性传入我的对象(例如 Widget)。在活动内部,它更新 Widget 的属性(即设置 Widget.Name =“New Name”)。在自定义活动 2 中,我想更新相同的依赖属性来更新 Widget 上的其他属性(即设置 Widget.Title =“New Title”)。
我的问题是,如果我在自定义活动 1 中注册依赖属性,如何在自定义活动 2 中使用依赖属性?如果我尝试在第二个活动中注册该属性,则会收到生成错误,提示“同名的属性已存在”。我的另一个想法是尝试使用 DepenedncyProperty.FromName 来注册依赖属性,但这似乎也不起作用。
I have a situation where I have a workflow that uses custom activities within a activity library. The workflow uses the custom activities that moves from custom activity 1 to custom activity 2. In custom activity 1 I create a dependency property that passes in my object (say a Widget) with custom properties. Inside the activity it updates the properties on the Widget (i.e. sets Widget.Name = "New Name"). Inside custom activity 2 I would like to update the same dependent property to update additional properties on the Widget (i.e. set Widget.Title = "New Title").
My question is if I register the Dependency Property in Custom Activity 1 how do I use the dependency property in custom activity 2? If I try and register the property in the second activity I get a build error saying "A property with the same name already exists". The other idea I had was instead of registering the dependency property I tried to use DepenedncyProperty.FromName but that doesn't seem to work either.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论