示例#1
0
        private void frmCompanyInfo_Load(object sender, EventArgs e)
        {
            _BLL = new bllCompanyInfo(); //业务逻辑层
            _BLL.GetSummaryData(true);   //获取数据
            _DetailGroupControl = gcDetailEditor;

            this.InitializeForm();
            BindingSummaryEditor(_BLL.SummaryTable); //绑定输入控件
            ButtonStateChanged(UpdateType.None);
            this.ShowDetailPage(true);
            tpSummary.Hide();
        }
示例#2
0
        private void frmCompanyInfo_Load(object sender, EventArgs e)
        {
            _BLL = new bllCompanyInfo(); //业务逻辑层
            _BLL.GetSummaryData(true);   //获取数据
            _DetailGroupControl = gcDetailEditor;

            this.InitializeForm();
            if (_FormMenuName != string.Empty)
            {
                this._FunctionID = bllComDataBaseTool.GetFunctionID(this._FormMenuName);
            }
            this.Tag = this._FunctionID;
            BindingSummaryEditor(_BLL.SummaryTable); //绑定输入控件
            ButtonStateChanged(UpdateType.None);
            this.ShowDetailPage(true);
            tpSummary.Hide();
        }