In data-binding you can use multi-binding.. and with multi-binding you can combine properties such {}{0} {1}. My question is what mean the first {} ? I am not talking about {0} which is used to select which property to use..
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It’s the markup extension {} escape sequence:
To elaborate: In XAML markup,
{and}are special characters: For example, writing{Binding}creates a Binding object. You, however, want to set the propertyStringFormatto the literal value{0} {1}. Thus, you prefix your property value with{}to tell the parser: “The following braces are just braces and do not carry any special meaning.”