What is the Markup extensions in XAML?
when and why we use curly braces ({ and }) to provide the value of an attribute syntax in XAML?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Satyapriya NayakPosted Feb 5, 2012, 2:10 AM
When used to provide the value of an attribute syntax, curly braces ({ and }) indicate a markup extension usage. This usage directs the XAML processing to escape from the general treatment of attribute values as either a literal string or a string-convertible value.
Refer
http://msdn.microsoft.com/en-us/library/ms752059.aspx#x_name_and_xaml_named_elements
http://wpftutorial.net/XAML.html
Thanks