Transform XAML syntax from Shorthand to full syntax
Posted
by
Emad
on Stack Overflow
See other posts from Stack Overflow
or by Emad
Published on 2009-07-05T21:44:59Z
Indexed on
2010/12/22
22:54 UTC
Read the original article
Hit count: 581
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
© Stack Overflow or respective owner