What is the meaning of nested curly brackets in attribute values in WPF/XAML markup? As in the following example:
<ListBox ItemsSource="{Binding Source={StaticResource pictures}}">
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.
That binds the
ItemsSourceof the list box to aStaticResourcecalledpictures. It’s simply nesting one markup extension in another.Read about markup extensions in XAML here: http://msdn.microsoft.com/en-us/library/ms747254.aspx