miércoles, 24 de noviembre de 2010

Scroll Decoupled Behavior for Silverlight

This post introduces the creation of a behavior in order to have a decoupled scroll with separated buttons for moving to the left or right the ScrollViewer and also a separated Thumb element. At the end of this post, I have pasted all the code.

martes, 16 de noviembre de 2010

HoldPressingClick Behavior

I had to design a new behavior in order to capture the pressing click action along a time. Furthermore, when this action performs, I needed to change a property of other element. Finally, I wanted to do all this in a resource dictionary (without code behind, according with MVVM).

lunes, 8 de noviembre de 2010

Dynamic Objects

In the last few days, many people asked me about how to access to properties or methods marked as private or internal in order to do unit tests or consume libraries that they are not good defined (take care about this because if a method or property has been marked as internal maybe it is because the implementation of this method can change). Anyway, I will introduce a new interesing new feature en C#, the Dynamic Objects.