Nonprofit Workflow Creation

I want to use no-code creation in a workflow. So there is no code. Let's say I have 2 user actions with dependent properties.

How to associate a property from activity1 with activity2?

+3
source share
1 answer

You can still use action binding in a script without code.

In the designer, select activity2 and in the property grid use the ... button on the target property. This opens the Bind Property dialog box in the Activity Property dialog box. Go to Activity1 and select the source property from it.

, , XOML: -

<ns0:Activity2 SomeProperty="{ActivityBind Activity1, Path=SomeOtherProperty}" ..>
+1

Source: https://habr.com/ru/post/1722801/


All Articles