Example #1
0
        private void FormControl_Load(object sender, EventArgs e)
        {
            _DataControl.SetDisplayWndNum(1, 2);//控制有几个画面

            RefreshOnlineDevice();

            EnabledContrlos(2);
            FormPwd       = new FormPwd();
            FormPwdManger = new FormPwdManger();
        }
Example #2
0
 static void Main()
 {
     Application.EnableVisualStyles();
     Application.SetCompatibleTextRenderingDefault(false);
     Process[] localNmae = Process.GetProcessesByName(System.Diagnostics.Process.GetCurrentProcess().ProcessName);
     if (localNmae.Length > 1)
     {
         MessageBox.Show("热点采集程序已经打开,请勿重复开启!");
     }
     else
     {
         FormPwd pwd = new FormPwd();
         pwd.ShowDialog();
         if (pwd.DialogResult == DialogResult.OK)
         {
             Application.Run(new FormMain());
         }
         else
         {
             return;
         }
     }
 }
Example #3
0
        // Label lblErrInfo = new Label();
        void InitializeAllWindows()
        {
            //this.label2.AutoSize = true;
            //this.label2.Font = new System.Drawing.Font("微软雅黑", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            //this.label2.Location = new System.Drawing.Point(15, 71);
            //this.label2.Name = "label2";
            //this.label2.Size = new System.Drawing.Size(21, 20);
            //this.label2.TabIndex = 1;
            //this.label2.Text = "y:";
            FormPwd = new FormPwd();
            //主窗口
            this.Width  = (int)MAINWINDOW_WIDTH;
            this.Height = (int)MAINWINDOW_HEIGHT;
            this.Controls.Add(this.list_data);
            this.list_data.Dock = DockStyle.Bottom;
            this.list_data.FormattingEnabled = true;
            this.list_data.ItemHeight        = 12;
            this.list_data.Location          = new System.Drawing.Point(0, 0);
            this.list_data.Name = "list_data";
            handle += upDateList;
            this.list_data.TabIndex = 40;
            //lblErrInfo.Location = new Point(0, list_data.Height );
            //lblErrInfo.Text = "错误信息";
            //lblErrInfo.Font = new System.Drawing.Font("微软雅黑", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            //lblErrInfo.Size = new Size(21, 20);
            //list_data.Controls.Add(lblErrInfo);

            //控制窗口
            _FormControl = new FormControl();

            _FormControl.TopLevel        = false;
            _FormControl.Parent          = this;
            _FormControl.FormBorderStyle = FormBorderStyle.Fixed3D;
            _FormControl.ControlBox      = false;
            _FormControl.Left            = (int)(MAINWINDOW_WIDTH - CONTROLWINDOW_WIDTH);
            _FormControl.Top             = 0;
            _FormControl.Width           = (int)CONTROLWINDOW_WIDTH - 20;
            _FormControl.Height          = (int)CONTROLWINDOW_HEIGHT;
            _FormControl.Dock            = DockStyle.Right;
            //显示窗口的背景窗口
            _FormDisplayBG                 = new FormDisplayBG();
            _FormDisplayBG.TopLevel        = false;
            _FormDisplayBG.Parent          = this;
            _FormDisplayBG.FormBorderStyle = FormBorderStyle.None;
            _FormDisplayBG.TopLevel        = false;
            _FormDisplayBG.Hide();

            //显示窗口
            _FormDisplayLst = new FormDisplay[MAX_DEVWINDOW_NUM];
            for (uint i = 0; i < MAX_DEVWINDOW_NUM; i++)
            {
                _FormDisplayLst[i]                 = new FormDisplay();
                _FormDisplayLst[i].TopLevel        = false;
                _FormDisplayLst[i].Parent          = _FormDisplayBG;
                _FormDisplayLst[i].FormBorderStyle = FormBorderStyle.None;
                _FormDisplayLst[i].Hide();
                _FormDisplayLst[i].GetDateDisplay().WndIndex = i;
            }
            this.list_data.Size = new System.Drawing.Size(Width - _FormControl.Width - 30, Height - _FormDisplayLst[0].Height - 320);
            list_data.Font      = new System.Drawing.Font("微软雅黑", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            _FormControl.Height = (int)(CONTROLWINDOW_HEIGHT)-40 - list_data.Size.Height;
            _FormControl.Show();
        }