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)
{...........................
............................