Posts by Pablo Almeida • 21 points
2 posts
-
2
votes1
answer3512
viewsA: Add buttons to the Datagridview cell
In my case it solved my problem... You can only use one DataGridViewImageColumn and use the event DataGridViewCellEventArgs to verify which cell was clicked. Obs: In my case, I was needing two…
-
0
votes3
answers7968
viewsA: Delete a line in Datagrid
You can do it like this: private void btoDeleletarItem_Click(object sender, EventArgs e) { datagrid.Rows.RemoveAt(datagrid.CurrentRow.Index); } This way you will be deleting from Datagrid only the…
c#answered Pablo Almeida 21