Example #1
0
    private void OnSelect(object Obj, TreeViewCancelEventArgs EA)
    {
        EA.Cancel = true;

        if (EA.Action == TreeViewAction.ByMouse)
        {
            if (EA.Node.Tag != null)
            {
                IO_Open.Open((String)EA.Node.Tag);
                CurrentPick = EA.Node;
            }
        }
    }
Example #2
0
 public void Clicked()
 {
     IO_Open.Open();
 }
Example #3
0
 void OnClick(object Obj, EventArgs EA)
 {
     IO_Open.Open();
 }