I know that something like:
myModelItem.Properties["myProperty"].ComputedValue = value;
will produce a writing in the .Xaml file like:
<myElement myProperty=value />
Now, what I need to do is to create a Binding using the ModelItem, to obtain something like:
<myElement myProperty="{Binding ElementName=rTCommand, Mode=OneWay}" />
Is there a way to achieve this?