An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
'EventArgs' does not contain a definition for 'ClickedItem'
and no accessible extension method 'ClickedItem' accepting
a first argument of type 'EventArgs' could be found
Change this line:
private void ninjaTraderToolStripMenuItem_Click(object sender, EventArgs e)
to this:
private void ninjaTraderToolStripMenuItem_Click(object sender, ToolStripItemClickedEventArgs e)
- Wayne