c#.net 3.5でそのツールストリップのitemselectイベントにツールストリップが添付されているコントロールのプロパティを使用する方法は?
picArray[n].ContextMenuStrip = new ContextMenuStrip();
ToolStripItem Schedule = picArray[n].ContextMenuStrip.Items.Add("Schedule");
picArray[n].ContextMenuStrip.Items.Add("Schedule");
picArray[n].ContextMenuStrip.ItemClicked += (sender, e) =>
{
panel1.Show();
if (e.ClickedItem == Schedule)
{
//Here I want to use property of that picturebox on which right
//click is done
}