I am using Silverlight 3.0 and I have a TreeView with a bunch of nodes.
I want users to be able to click on a Add node button and add a node which is simple enough.
However I also want users to be able to rename the node in the TreeView by selecting a node and pressing F2.
Is this do-able?
It certainly is possible because the Telerik RadTreeView does it (and it is based on the MS TreeView under the hood).
The likely solution with a normal TreeView will probably involve catching the keydown event on the TreeView to get F2 then create a TextBox from code (positioned over the selected tree node).