程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> 個人開發框架總結(五)(4)

個人開發框架總結(五)(4)

編輯:關於C語言
代碼裡,可以重寫SetReportConfig方法來設置報表標簽的文本:

/// <summary>
        /// 設置報表配置
        /// </summary>
        /// <param name="config"></param>
        protected override void SetReportConfig(FaibClass.Common.Windows.Config.ReportConfig config)
        {
            base.SetReportConfig(config);
            object lbl = config.Header.FindObject("Company");
            if (lbl != null)
            {
                ((FaibClass.Common.Windows.Report.ReportLabel)lbl).Text = ContextArgs.Instance.CompanyName;
            }
            lbl = config.Header.FindObject("Employee");
            if (lbl != null)
            {
                string text = ((FaibClass.Common.Windows.Report.ReportLabel)lbl).Text;
                ((FaibClass.Common.Windows.Report.ReportLabel)lbl).Text = string.Format(text, ContextArgs.Instance.UserName);
            }
        }

如果報表使用查詢,也要建立相應的*.pcs文件。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved