1
vote
How to add things to a menustrip programatically?
It's rather straight forward. You can do the following:
ToolStripMenuItem menuItem
foreach (string text in collectionOfText)
{
ToolStripMenuItem foo = new ToolStripMenuItem(tex …
