private void Netree_MouseClick(object sender, MouseEventArgs e)
{
if(e.Button == MouseButtons.Left)
{
TreeNode tn = this.Netree.GetNodeAt(e.Location);
if (tn != null && tn.Bounds.Contains(e.Location))
{
if (tn.Nodes.Count == 0)
{...........................
............................
posted on 2008-10-31 10:24
天书 阅读(2715)
评论(0) 编辑 收藏 引用