I have a DataGrid in my wpf project which is bound to a datasource and is successfully getting populated with values. Now problem is, how do i respond when user is deleting a row. I also want to delete the same row in database also. My approach is to get the id from lbId column of currently selected row and issue a DELETE query when user presses Delete button on keyboard or the Delete Button in my GUI . How am i supposed to do this?.
Or alternatively Isn't there any thing like UserDeletingRow as in Winforms DataGridView?
Here is the XAML
<DataGrid AutoGenerateColumns="False" Height="430" HorizontalAlignment="Left" Margin="378,61,0,0" Name="dataGrid1" VerticalAlignment="Top" Width="550" ItemsSource="{Binding Path=LocalBookmarks}" CanUserReorderColumns="False" CanUserSortColumns="False" Grid.Row="5" RowEditEnding="datagrid1_RowEditEnding" DataGridRow.Selected="datagrid1_RowSelected">
<DataGrid.Columns>
<DataGridTextColumn Header="Id" Width="20" Binding="{Binding Path=lbId}" CanUserResize="False"></DataGridTextColumn>
<DataGridTextColumn Header="Title" Width="225" Binding="{Binding Path=TitleOfPage}" MaxWidth="250" CanUserResize="True"></DataGridTextColumn>
<DataGridHyperlinkColumn CanUserResize="True" Header="Link" MaxWidth="300" MinWidth="250" Binding="{Binding Path=SiteAddress}"/>
<DataGridTextColumn Header="Saved On" Width="70" Binding="{Binding Path=DateAdded}" CanUserResize="True"></DataGridTextColumn>
</DataGrid.Columns>
</DataGrid>
Here is the image of DataGrid.

Here is the binding code:
private void BindToData(SqlCeConnectionManger s, int gt, int lt)
{
SqlCeDataAdapter sda = new SqlCeDataAdapter("SELECT * FROM LocalBookmarks WHERE lbId > " + gt.ToString() + " AND lbId < " + lt.ToString() + " ORDER BY DateAdded DESC", s.SqlCeCon);
DataSet dataset = new DataSet();
sda.Fill(dataset, "LocalBookmarks");
dataGrid1.DataContext = dataset;
s.SqlCeCon.Close();
}
Any help will be appreciated.