how to delete image from picture box when user press "del" key...I dont find any keypress or keydown events for PB.
private void topRight_pbx_MouseClick(object sender, MouseEventArgs e)
{
imgSelected=true;
//need to accept "delete"key from keyboard?
topRight_pbx.Image = null;
topRFile = "";
}
PictureBox
controls, you'll still need some external way to indicate which particular one is selected, lest the user inadvertently delete the wrong image. – Indemnity