Another Newbie Question

  • Thread starter Thread starter sherri
  • Start date Start date
S

sherri

I need to be able to delete a tree node by clicking on the Delete key
on the keyboard. (Basically, clicking on the Delete key calls a method
which performs the delete.) An explanation and/or example would be
very much appreciated.
 
You can intercept the pressing of the delete key in either

KeyUp, KeyDown, or KeyPress events for the treeview.
 
Back
Top