I have assigned my menuIndexEdit context menue to my indexValidImage array of picture boxes. Everything works fine when I right click except I cant find how to determine which box that was right clicked on. Any information is helpfull.
for (int i = 0; i < indexValidImage.Count; i++)
{
indexValidImage[i].ContextMenuStrip = menuIndexEdit;
}
private void menuIndexEdit_Opening(object sender, CancelEventArgs e)
{
}
If im not mistake you want something like this