Exemplo n.º 1
0
 //********************************************************************************************
 public void Init(IOForm f, XwRemoteIO remote)
 {
     form                     = f;
     remoteIO                 = remote;
     ContextMenuStrip         = contextMenu;
     remoteIO.OnFileProgress += OnFileProgress;
 }
Exemplo n.º 2
0
        //**********************************************************************************************
        public override bool OnTabClose()
        {
            bool ret = true;

            if (form != null)
            {
                ret = form.OnTabClose();
            }
            form = null;
            return(ret);
        }
Exemplo n.º 3
0
 //********************************************************************************************
 public void Init(IOForm f)
 {
     form = f;
     LoadPins();
     ContextMenuStrip = contextMenu;
 }
Exemplo n.º 4
0
 //**********************************************************************************************
 public override void Open(TabPageEx tab)
 {
     form        = new IOForm(this);
     form.Parent = tab;
     form.Show();
 }
Exemplo n.º 5
0
 public LoadRemotePath(IOForm form, string path)
 {
     this.form = form;
     this.path = path;
 }