Blog of me, Chris Idzerda, containing my thoughts, comments, and questions. RSS Feed

Animating a GridLength
19 Jun 2007, 05:15:00 PM
WPF provides several classes for animating many different types (e.g. ColorAnimation and Rotation3DAnimation) but none for animating a GridLength structure. I wanted such a class recently to create an animated navigation panel. There are a few MSD ...
Read post

GridView, ObjectDataSource, DataSet, and Stored Procedures
15 Jun 2007, 04:42:00 PM
I was planning to post about using a GridView inside of a DetailsView to show how to expose a one-to-many relationship when I ran into a problem with the default behavior of a GridView, an ObjectDataSource, and a DataSet that uses stored procedure ...
Read post

Routed Event Triggers in Silverlight 1.0 Beta
04 Jun 2007, 05:29:00 PM
How do you handle a button click as the routed event in an event trigger in Silverlight 1.0 Beta? You don't, according to the RoutedEvent Property documentation. The only event supported in event triggers is the Loaded event. I can write the follo ...
Read post