Browse by Tags
All Tags »
WPF »
Silverlight (
RSS)
Sorry, but there are no more tags available to filter with.
-
|
Wpf and xaml has been out for a while now, so the community already knows the do’s and don’ts of programming in xaml. Thankfully, there are always some nice people who share this stuff with us. This is a good resource and starting point. It also...
|
-
|
The other day, I had to show different datatemplates depending on a specific property value. (The datatemplateSelector is your friend!) I used different foreground colors to visualize the states; however, the layout design was the same for each...
|
-
|
I really like WPF converters. I often don’t need the ConvertBack method though. Most programmers deal with this by leaving the throw new NotImplementedException() , or they return null. I also see this method being marked with the [Obsolete()] ...
|
-
|
Last week, I was giving a Silverlight training in the beautiful Bergen (Norway). I have WPF experience, but I was still struggling with some demo’s because of its differences with Silverlight. Silverlight is supposed to be a subset of WPF but that’s not...
|
-
|
Many times, you want to bind a numeric value to another property AND perform some calculation over it. For instance, you would like to bind the width of your control to be half the size of its parent control. Take a look at this converter It enables...
|
-
|
With the introduction of Silverlight (SL), Microsoft promised us a we could leverage our existing skills to create RIA's (rich internet application). This means SL should be a subset of WPF, which is a big deal! So I was scared when I watched Ian...
|