Exemplo n.º 1
0
    private void OnSelect(object Obj, TreeViewCancelEventArgs EA)
    {
        EA.Cancel = true;

        if (EA.Action == TreeViewAction.ByMouse)
        {
            if (EA.Node.Tag != null)
            {
                String Name = (String)EA.Node.Tag;
                Insert_Manager.Select(Name);
            }
        }
    }