Is there a tool or a simple way to transform XAML code from the shorthand syntax to the full syntax? For example: moving from something like:
<_TextBox Text="{Binding Path=Formula.Production, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
to
<_TextBox> <_TextBox.Text> <Binding Path="Formula.NumCloses" Mode="TwoWay" UpdateSourceTrigger="PropertyChanged"> </Binding> </TextBox.Text> </TextBox>
?
Thanks