public FShiftTargetYieldScheduleDetail()
        {
            InitializeComponent();

            proUserData.Font = ControlSetting.ListFont;
            try
            {
                this._shiftTargetYieldScheduleBL = MasterBLLFactory.GetBLL<IShiftTargetYieldScheduleBL>(MasterBLLFactory.ShiftTargetYieldSchedule);
                this.SysToolBar.OnItemSave_Click +=new SystemToolBar.ItemSave_Click(SysToolBar_OnItemSave_Click);
                this.SysToolBar.OnItemExit_Click += new SystemToolBar.ItemExit_Click(SysToolBar_OnItemExit_Click);

            }
            catch (Exception Ex)
            {

                throw Ex;
            }

            _editInfo = null;
        }
예제 #2
0
        public FShiftTargetYieldSchedule()
        {
            InitializeComponent();
            this.lvArea.Font = ControlSetting.ListFont;
            this.lvMachines.Font = ControlSetting.ListFont;
            this.lvTargetYieldScheduleInfo.Font = ControlSetting.ListFont;
            try
            {
                this._shiftTargetYieldScheduleBL = MasterBLLFactory.GetBLL<IShiftTargetYieldScheduleBL>(MasterBLLFactory.ShiftTargetYieldSchedule);

                this._areaMasterBL = MasterBLLFactory.GetBLL<IAreaMasterBL>(MasterBLLFactory.AreaMaster);

                this._generalBL = GeneralBLLFactory.GetBLL<IGeneralBL>(GeneralBLLFactory.General);
            }
            catch (Exception Ex)
            {

                throw Ex;
            }

            _displayInfo = null;
        }