i havve one treeview and 2 buutten i want when click on UP_buutten, above Node selected
|
|
my problem solved thanx for answers private void button1_Click(object sender, EventArgs e) { TreeNode node = new TreeNode();
|
||||
|
|
|
try this for UP:
|
||
|
|
|
|
There are some nice built in properties of the node that you can use, so for up you would use:
and for down:
|
||
|
|
|
From MSDN Documentation:
EDIT EDIT 2
This would move the current node one down. Please note that you have to write some more code to handle some special cases (e.g. what happens with the first node? Does it work on all levels of the tree?), but basically that's what I'd try. |
||||
|
