I have create two separate contextmenu strips on a windows form. Now i want to display both these combined on to a tree node. Is this possible?
e.g.
First strip: Add, Subtract
Second strip: multiply, divide.
When I right click on a tree node the menu should display Add,subtract,mu ltiply and divide.
I know that
treeView.Nodes[3].Nodes[2].ContextMenuStr ip= firststrip;
will disply the first one only. I want to do something like this
treeView.Nodes[3].Nodes[2].ContextMenuStr ip= firststrip+seco ndstrip
e.g.
First strip: Add, Subtract
Second strip: multiply, divide.
When I right click on a tree node the menu should display Add,subtract,mu ltiply and divide.
I know that
treeView.Nodes[3].Nodes[2].ContextMenuStr ip= firststrip;
will disply the first one only. I want to do something like this
treeView.Nodes[3].Nodes[2].ContextMenuStr ip= firststrip+seco ndstrip
Comment