hey!
popup is all about displaying the menu. if you want to see which menuitem is clicked, you should set onclick event and check...
Code:
ToolStripMenuItem m_ClickItem = (ToolStripMenuItem)sender;
if(m_ClickItem == mytoolstripmenuitemFileOpen)
{ 
do something
}