I'm using MVVM and I have a datagrid that user can add rows to by hitting enter, and delete from by hitting a Delete button in the view which is bound to SelectedItem. Here's the grid:
<DataGrid x:Name="dgLines" RowEditEnding="OnRowEditEnding" CanUserDeleteRows="False" CanUserAddRows="True" Margin="10" Grid.Row="2" ItemsSource="{Binding Lines}" SelectedItem="{Binding SelectedLine,Converter={StaticResource ignoreNewItemPlaceHolderConverter}}" VerticalAlignment="Top" HorizontalAlignment="Left" Width="600" AutoGenerateColumns="False" HorizontalScrollBarVisibility="Hidden">
<DataGrid.RowStyle>
<Style TargetType="DataGridRow">
<Setter Property="ValidationErrorTemplate" Value="{x:Null}"/>
</Style>
</DataGrid.RowStyle>
<DataGrid.Columns>
<DataGridTemplateColumn Header="Key" Width="100">
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<TextBlock Text="{Binding Key}" ToolTip="{Binding RelativeSource={x:Static RelativeSource.Self},Path=(Validation.Errors).CurrentItem.ErrorContent}"/>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
<DataGridTemplateColumn.CellEditingTemplate>
<DataTemplate>
<Grid FocusManager.FocusedElement="{Binding ElementName=txtKey}">
<vw:NumericTextBox x:Name="txtKey" Text="{Binding Key,TargetNullValue='',Mode=TwoWay,ValidatesOnDataErrors=True,UpdateSourceTrigger=PropertyChanged}" />
</Grid>
</DataTemplate>
</DataGridTemplateColumn.CellEditingTemplate>
</DataGridTemplateColumn>
<DataGridTemplateColumn Header="Value" Width="*">
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<TextBlock Text="{Binding Value}" />
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
<DataGridTemplateColumn.CellEditingTemplate>
<DataTemplate>
<Grid FocusManager.FocusedElement="{Binding ElementName=txtValue}">
<vw:NumericTextBox x:Name="txtValue" Text="{Binding Value,TargetNullValue='',Mode=TwoWay,ValidatesOnDataErrors=True,UpdateSourceTrigger=PropertyChanged}" />
</Grid>
</DataTemplate>
</DataGridTemplateColumn.CellEditingTemplate>
</DataGridTemplateColumn>
</DataGrid.Columns>
</DataGrid>
Here's the delete button:
<Button Content="Remove Item" Width="80" HorizontalAlignment="Right" Margin="10" Command="{Binding RemoveLine}"/>
and in the VM
this.removeLine = new RelayCommand(param => this.RemoveLine(), param => SelectedLine != null && SelectedLine.IsValid);
When the user hits enter to create a new row I want to set focus to the textbox in it ready for data entry. Otherwise they have to click with the mouse. I found Vincent Sibal's code to set the focus here:
http://blogs.msdn.com/b/vinsibal/archive/2009/04/14/5-more-random-gotchas-with-the-wpf-datagrid.aspx
but it only works if I set the SelectionUnit to Cell (throws an exception "Cannot change cell selection when the SelectionUnit is FullRow" otherwise). If set SelectionUnit to Cell my Delete button is never enabled, presumably SelectionUnit of Cell messes up SelectedItem. Is it possible to make both things work?