How can I get node info when I rightclick on a node in the NTreelist in the follwing situation?
I am able to left click a node and get the info with the itemnotifycode:
void
nTreeList1_ItemNotify(object sender, NLightUIItemNotifyData data)switch
(data.NotifyCode){
case
NItemsControl.ItemLabelClickNotifyCode : NTreeNode node = data.Sender as NTreeNode;
Unfortunally this only works for left mouse down...