Ejemplo n.º 1
0
 void mainFormPanelMode(SPLITTER_MODE up, SPLITTER_MODE center, SPLITTER_MODE bottom)
 {
     if (this.InvokeRequired)
     {
         mainFormPanelMode_Call d = new mainFormPanelMode_Call(mainFormPanelMode);
         this.BeginInvoke(d, new object[] { up, center, bottom });
     }
     else
     {
         if (center == SPLITTER_MODE.EXPAND)
         {
             label.Dock = DockStyle.Left;
             label.Text = "<<";
         }
         if (center == SPLITTER_MODE.NORMAL)
         {
             label.Dock = DockStyle.Right;
             label.Text = ">>";
         }
         //if (!mc.init.success.ALL)
         //{
         //    TS_FR.Visible = false;
         //    TS_RR.Visible = false;
         //}
         //else
         //{
         //    TS_FR.Visible = true;
         //    TS_RR.Visible = true;
         //}
     }
 }
Ejemplo n.º 2
0
 void mainFormPanelMode(SPLITTER_MODE up, SPLITTER_MODE center, SPLITTER_MODE bottom)
 {
     if (this.InvokeRequired)
     {
         mainFormPanelMode_Call d = new mainFormPanelMode_Call(mainFormPanelMode);
         this.BeginInvoke(d, new object[] { up, center, bottom });
     }
     else
     {
         panelResize(up, center, bottom);
     }
 }
Ejemplo n.º 3
0
 void mainFormPanelMode(SPLITTER_MODE up, SPLITTER_MODE center, SPLITTER_MODE bottom)
 {
     if (this.InvokeRequired)
     {
         mainFormPanelMode_Call d = new mainFormPanelMode_Call(mainFormPanelMode);
         this.BeginInvoke(d, new object[] { up, center, bottom });
     }
     else
     {
         if (bottom == SPLITTER_MODE.EXPAND)
         {
             label.Dock = DockStyle.Left;
             label.Text = "<<";
         }
         if (bottom == SPLITTER_MODE.NORMAL)
         {
             label.Dock = DockStyle.Right;
             label.Text = ">>";
         }
     }
 }
Ejemplo n.º 4
0
        void mainFormPanelMode(SPLITTER_MODE up, SPLITTER_MODE center, SPLITTER_MODE bottom)
        {
            if (this.InvokeRequired)
            {
                mainFormPanelMode_Call d = new mainFormPanelMode_Call(mainFormPanelMode);
                this.BeginInvoke(d, new object[] { up, center, bottom });
            }
            else
            {
                if (up == SPLITTER_MODE.EXPAND)
                {
                    label.Dock = DockStyle.Left;
                    label.Text = "<<";
                }
                if (up == SPLITTER_MODE.NORMAL)
                {
                    label.Dock = DockStyle.Right;
                    label.Text = ">>";
                }

                if (mc.init.success.ALL && !mc.full.RUNING)
                {
                    RB_AutoMode.Visible   = true;
                    RB_ByPassMode.Visible = true;
                    RB_DumyMode.Visible   = true;
                    BT_Start.Visible      = true;

                    CB_NO_SMEMA_PRE.Visible = true;
                    CB_Stay_Work.Visible    = true;
                    //CB_StepWorkMode.Visible = true;
                    TB_USERNAME.Visible = true;

                    RB_AutoMode.Enabled   = true;
                    RB_ByPassMode.Enabled = true;
                    RB_DumyMode.Enabled   = true;
                    BT_Start.Enabled      = true;
                    BT_PowerOff.Enabled   = true;

                    if (mc.main.RB_AUTOCHECK == true)
                    {
                        RB_AutoMode.Checked  = true;
                        mc.main.RB_AUTOCHECK = false;
                    }
                }
                else
                {
                    if (!mc.init.success.ALL)
                    {
                        RB_AutoMode.Visible = false;
                        //RB_ByPassMode.Visible = false;
                        RB_DumyMode.Visible = false;
                        //BT_Start.Visible = false;
                        BT_PowerOff.Enabled     = true;
                        CB_NO_SMEMA_PRE.Visible = false;
                        CB_Stay_Work.Visible    = false;
                        //                      TB_USERNAME.Visible = false;
                        //CB_StepWorkMode.Visible = false;
                    }
                    else
                    {
                        RB_AutoMode.Enabled   = false;
                        RB_ByPassMode.Enabled = false;
                        RB_DumyMode.Enabled   = false;
                        BT_Start.Enabled      = false;
                        BT_PowerOff.Enabled   = false;
                    }
                }
            }
        }