Posts from May 2009

May
7
2009

Guide: Subversion with Visual Studio



Posted in Uncategorized

I’ve just published a guide to source control with Visual Studio, AnkhSVN and TortoiseMerge.

May
1
2009

WPF: DataGrid And The Return Key



Posted in Programming and WPF

A decent DataGrid is really the only thing WPF doesn’t have. The WPF Toolkit DataGrid is a great addition but it’s still lacking in a few places.

To me, it would seem natural for the Tab key to move to the next column and Enter to move to the next row, but there isn’t really support for this.

After experimenting with KeyUp and KeyDown events, I came up with the following method, based on a similar technique by Vincent Sibal. It makes the DataGrid more usable in my opinion.

Read more »