You could derive from InsertionRow and override OnPreviewKeyDown like this:
protected override void OnPreviewKeyDown( KeyEventArgs e )
{
base.OnPreviewKeyDown( e );
if( e.Key == Key.Enter )
{
this.Cells[ 0 ].BeginEdit();
}
}
Technical Writer - Xceed Software
Of all the things I've lost, I miss my mind the most. - Mark Twain