views:

18

answers:

1

When binding multiple variables value1 value2 value3 in the same text field, do I do this:

text="{some text value1 other text value2 and other text value3}"

or 

text="some text {value1} other text {value2} and other text {value3}"

I noticed both work, but which is the right way to do it and will work all the time.

+3  A: 

I would recommend the later for legibility. It also emphasizes which variables should be set Bindable.