How can I delete a row from a datagrid?

0

What I would like to know is how to delete a complete row of a datagrid when the user selects it and clicks on a button, since I am new working with databases

    
asked by Gabriel Garza 07.11.2018 в 21:23
source

1 answer

0

As follows:

DataGridName.Items.RemoveAt(DataGridName.SelectedIndex);
    
answered by 07.11.2018 / 22:13
source