frm_Main.cs 4.68 KB
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;


namespace GreatWall.UI
{
    public partial class Frm_Main : Form
    {
        #region 属性

        public TB_User user { get; set; }

        /// <summary>
        /// 服务host
        /// </summary>
        ServiceHost host;

        #endregion

        #region 子窗体定义

        /// <summary>
        /// 计划导入子窗体
        /// </summary>
        public frm_PlanImport planImport { get; set; }

        /// <summary>
        /// 计划信息子窗体
        /// </summary>
        public frm_PlanInfo planInfo { get; set; }

        /// <summary>
        /// 追溯系统子窗体
        /// </summary>
        public frm_QCTrack QCTrack { get; set; }

        /// <summary>
        /// 查看计划执行状态子窗体
        /// </summary>
        public frm_ShowPlanRunningInfo showPlanRunningInfo { get; set; }

        /// <summary>
        /// 产品型号信息
        /// </summary>
        public frm_ModelInfo modelInfo { get; set; }

        /// <summary>
        /// 员工信息
        /// </summary>
        public frm_WorkerInfo workerInfo { get; set; }

        /// <summary>
        /// 任务信息
        /// </summary>
        public frm_WorkTaskInfo workTaskInfo { get; set; }

        /// <summary>
        /// 任务查询
        /// </summary>
        public frm_WorkTaskSer workTaskSer { get; set; }

        /// <summary>
        /// 子部件信息管理
        /// </summary>
        public frm_SecondModelInfo secondModelInfo { get; set; }

        #endregion

        public Frm_Main(TB_User user)
        {
            InitializeComponent();
            this.user = user;
            lab_Status1.Text = "操作员:" + user.UserName;
            lab_Status2.Text ="登录时间:" + DateTime.Now;
            lab_Status3.Text = "远程服务未启用。";
        }

        #region 窗体事件

        /// <summary>
        /// 用于改变背景色
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void frm_Main_Load(object sender, EventArgs e)
        {
            foreach (Control ctl in this.Controls)
            {
                try
                {
                    MdiClient ctlMDI;
                    // Attempt to cast the control to type MdiClient.
                    ctlMDI = (MdiClient)ctl;
                    ctlMDI.Margin = new Padding(0);

                    // Set the BackColor of the MdiClient control.
                    ctlMDI.BackColor = this.BackColor;
                }
                catch (InvalidCastException exc)
                {
                    // Catch and ignore the error if casting failed.
                }
            }
        }

        #endregion

        #region 窗口
        private void CascadeToolStripMenuItem_Click(object sender, EventArgs e)
        {
            LayoutMdi(MdiLayout.Cascade);
        }

        private void TileVerticalToolStripMenuItem_Click(object sender, EventArgs e)
        {
            LayoutMdi(MdiLayout.TileVertical);
        }

        private void TileHorizontalToolStripMenuItem_Click(object sender, EventArgs e)
        {
            LayoutMdi(MdiLayout.TileHorizontal);
        }

        private void ArrangeIconsToolStripMenuItem_Click(object sender, EventArgs e)
        {
            LayoutMdi(MdiLayout.ArrangeIcons);
        }

        private void CloseAllToolStripMenuItem_Click(object sender, EventArgs e)
        {
            foreach (Form childForm in MdiChildren)
            {
                childForm.Close();
            }
        } 
        #endregion

        #region 响应事件

        ///// <summary>
        ///// 产品型号管理
        ///// </summary>
        ///// <param name="sender"></param>
        ///// <param name="e"></param>
        //private void menu_304_Click(object sender, EventArgs e)
        //{
        //    if (modelInfo == null || modelInfo.IsDisposed)
        //    {
        //        modelInfo = new frm_ModelInfo(user);
        //        modelInfo.MdiParent = this;
        //    }
        //    modelInfo.Show();
        //    if (modelInfo.WindowState == FormWindowState.Minimized)
        //        modelInfo.WindowState = FormWindowState.Normal;
        //    modelInfo.Activate();
        //}

        #endregion

        /// <summary>
        /// 程序退出
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void frm_Main_FormClosing(object sender, FormClosingEventArgs e)
        {
            Application.Exit();
        }

    }
}