I had the same problem and i used this code:
private void listView1\_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Delete)
{
listView1.Items.RemoveAt(listView1.SelectedIndices\[0\]);
}
}
I hope this help you...
public void showSignature(object sender, MyForumSignatureEventArgs e) { signatureLabel.Text = e.Signature("MatheusMK3", "codeproject.com", "Forum"); }