Treeview and LabelEdit

  • Thread starter Thread starter Ravin Jani
  • Start date Start date
R

Ravin Jani

..netCF TreeView control does not support in-place label
edit. Is there a way around it? I am looking for
functionality similar to that implemented in Pocket File
Explorer, where Tap and Hold Context menu has a rename
menu item which than allows in-place label editing.
 
You can attach a context menu to a tree view. To do in place editing you
could float a textbox over the treeview control to accept the input. If
in-place is not essential you can use a panel or floating dialog to edit the
value.

Peter
 
Thanks for the reply. That was the very first thing I
tried. The problem then was GetNodeXY for a tree is also
not supported. I was going to use the the node
coordinates to overlay the textbox to give the illusion of
in-place editing.

I imagine you are refering to the tap and hold coordinates
to draw the textbox at. Right?
 
Back
Top