右键选中节点事件

if (e.Button == MouseButtons.Right)
            {
                TreeNode node = this.tree.GetNodeAt(e.X, e.Y);
                if (node != null)//右键未选中节点,不改变当前选中的节点。
                {
                    this.tree.SelectedNode = node;
                }
            }
posted @ 2010-09-06 13:52  大明1986  阅读(245)  评论(0编辑  收藏  举报