Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Workflow no-code authoring

I want to use the no-code authoring in the workflow. So no code behind. Let's say I have 2 custom activities with dependency properties.

How can I bind a property from activity1 to activity2 ?

like image 705
pdiddy Avatar asked May 17 '26 11:05

pdiddy


1 Answers

You can still use Activity binding in a no code behind scenario.

In the designer select activity2 and in the property grid uses the ... button on the target property. This opens the "Bind 'Property' to an activity's property" dialog. Navigate to Activity1 and select the source property from it.

Or if you want to be hardcode you can tweak up the XOML:-

<ns0:Activity2 SomeProperty="{ActivityBind Activity1, Path=SomeOtherProperty}" ..>
like image 66
AnthonyWJones Avatar answered May 19 '26 02:05

AnthonyWJones