Пример #1
0
        public FIdleStateProfileDetail()
        {
            InitializeComponent();

            try
            {
                this._idleStateMasterBL = MasterBLLFactory.GetBLL<IIdleStateMasterBL>(MasterBLLFactory.IdleStateMaster);
                this.SysToolBar.OnItemSave_Click += new SystemToolBar.ItemSave_Click(SysToolBar_ItemSave_Click);
                this.SysToolBar.OnItemExit_Click += new SystemToolBar.ItemExit_Click(SysToolBar_ItemExit_Click);
            }
            catch (Exception Ex)
            {

                ShowErrorMessage(Ex.Message);
            }
        }
Пример #2
0
        public FIdleStateProfile()
        {
            InitializeComponent();
            this.lvISMInfo.Font = ControlSetting.ListFont;
            try
            {
                this._idleStateMasterBL = MasterBLLFactory.GetBLL<IIdleStateMasterBL>(MasterBLLFactory.IdleStateMaster);
            }
            catch (Exception Ex)
            {

                ShowErrorMessage(Ex.Message);
            }

            this._displayInfo = null;
        }