Quantcast
Channel: Windows Forms General forum
Viewing all articles
Browse latest Browse all 12583

System.Windows.Forms.ToolStripMenuItem strange behaviour ?

$
0
0

Hi , I have 2 methods that one will invoke other. The one load data and created ToolStripMenuItem, then pass to second method. Inside 2nd method the menu will bind into treenode. The strange is all menus from outside context of 2nd method block will not displayed ?

void LoadData()
{
    // .....
    ToolStripMenuItem item = new ToolStripMenuItem("Menu 1");
    item.Click += .....;
    BindData(...., new ToolStripMenuItem[] { item }, .... ); 
}

void BindData(....., ToolStripMenuItem[] mis, .... )
{
    // ....
    TreeNode n = .....;
    ContextMenuStrip cms = new ContextMenuStrip();
    cms.Items.AddRange(mis); // menu item from parameter won't show up
    
    // but menu item created inside block show up
    ToolStripMenuItem mi = new ToolStripMenuItem("Inside");
    cms.Items.Add(mi);    // show up

    n.ContextMenuStrip = cms; // bind menu-strip
}


It's hard to be advanced programmer


Viewing all articles
Browse latest Browse all 12583

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>