12 Mar
2010

Silverlight 4: Implicit Themes and a Sneak Peek

One of my major gripes with Silverlight 3 is the inability to theme your application.  Currently if you want to style a button for your application you will have to define a style similar to this: <UserControl.Resources> <Style x:Key="myButtonStyle" TargetType="Button"> <Setter Property="Background" Value="Blue" /> <Setter Property="Foreground" Value="Green" /> <Setter Property="FontSize" Value="24" /> </Style> </UserControl.Resources> Then, […]

Read More