While activity in WF 4 rehosted designer
问题 I have written a custom activity which contains a simple ExpressionTextBox: <sapv:ExpressionTextBox HintText="List of Strings" Grid.Row ="0" Grid.Column="1" MaxWidth="150" MinWidth="150" Margin="5" OwnerActivity="{Binding Path=ModelItem}" Expression="{Binding Path=ModelItem.Test, Mode=TwoWay, Converter={StaticResource ArgumentToExpressionConverter}, ConverterParameter=In }" /> In the library, i've added Test property as follows: public InArgument<string> Test { get; set; } So, this is the