Question

I have a function which adds Labels to a MenuStrip. On the ItemClicked function, I was using the following code:

MenuItem mi = sender as MenuItem;
string a = mi.Text;

However, I get the following error, upon reading this:

Object reference not set to an instance of an object.
Était-ce utile?

La solution

 private void menuStrip1_ItemClicked(object sender, ToolStripItemClickedEventArgs e)
        {

         string str=e.ClickedItem.Text;
        }
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top