Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Binding on Style Setter in Silverlight 5

0.00/5 (No votes)
19 May 2011 1  
Binding on Style setter in Silverlight 5

Continuing our discussion on Silverlight 5 features. In earlier posts, we discussed about Text Advancement in Silverlight 5. In this post, we will discuss another new feature called Binding on Style Setter. This feature is very useful for the XAML designer. If you are an XAML designer, you must be aware of this cool new feature.

Read the complete post where we will discuss how we can bind to a Style Setter.

As you already know, it is a new feature in Silverlight 5 and hence was not available in earlier version of Silverlight. So, how did we implement the style setter in previous versions? Let's start from scratch, where we will know how to use a Setter in Style and then we will jump to the Setter binding.

Prior to Silverlight 5 Beta, we actually coded values to the Setter property like this:

image

We also had the option to use a StaticResource directly as the Setter property value, where StaticResource has been defined in the Resources. Have a look at the code below:

image

So, what about Binding? Binding to the setter is a new feature in Silverlight 5. By using this feature, you can actually bind to a control property or a StaticResource like this:

image

More preferred example for this feature will be this:

image

Here, we have our ViewModel defined as a StaticResource in our XAML page. Now we can directly bind the Collection defined in the ViewModel and set it in the Style Setter instead of declaring it in the control level. Here "Path" defines the collection present in our ViewModel.

Hope this post helped you to understand the feature and its uses. Stay tuned for my other posts on Silverlight 5 features.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here