Click here to Skip to main content
15,884,537 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I got a tree view And i want the user to re sequence the tree nodes as he wishes .

I could implement drag and drop but the no of nodes go above 600 which is impossible to drag and drop .


So i plan to Implement a context menu right click on node which asks the user to specify the node position below/above which it wants to place.


How can implement this feature and with what controls is it possible??
Posted

1 solution

Steps to do:
1) Add ContextMenuStrip (Name: ContextMenuStrip1)
2) Add to contextMenuStrip ToolStripTextBox (Name: ToolStripTextBox1)
3) Add below code:
C#
private void toolStripTextBox1_KeyUp(object sender, KeyEventArgs e)
{
    ToolStripTextBox tsb = (ToolStripTextBox)sender;
    if(e.KeyCode  == Keys.Enter )
        MessageBox.Show(tsb.Text);
}
 
Share this answer
 
Comments
gaurish thakkar 12-Apr-13 3:49am    
Thank u very much ...This is exactly what i wanted.
Maciej Los 12-Apr-13 11:43am    
You're welcome ;)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900