亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#利用ReportViewer生成報表

發布時間:2020-10-11 07:45:15 來源:腳本之家 閱讀:328 作者:飛翔的月亮 欄目:編程語言

本文主要是利用微軟自帶的控件ReportViewer進行報表設計的小例子,具體內容如下

涉及知識點:

ReportViewer :位于Microsoft.Reporting.WinForms命名空間, 主要用于報表的顯示
Report:報表,以rdlc結尾的文件,可視化設計報表模板。
報表數據:內置字段,參數,圖像,數據集(本報表主要使用參數,和數據集)
ReportParameter:使用名稱和值實例化新的報表參數
ReportDataSource:報表的數據源與DataTable對象聯系起來

效果圖如下:

C#利用ReportViewer生成報表

相關代碼如下:

/// <summary>
  /// 設置報表
  /// </summary>
  private void SetReport()
  {
   //第一步:清除之前的數據
   this.rptView.LocalReport.DataSources.Clear();
   //第二步:指定報表路徑
   this.rptView.LocalReport.ReportPath = "Report2.rdlc";
   //第三步:構造新的DataTable
   DataTable dt = new DataTable("DataTable1");
   dt.Columns.Add("Name");
   dt.Columns.Add("Score");
   dt.Columns.Add("Id");
   dt.Rows.Add(new object[] { "語文", 80, "Y0001" });
   dt.Rows.Add(new object[] { "數學", 75, "S0001" });
   dt.Rows.Add(new object[] { "英文", 96, "E0001" });
   //名稱不能寫錯,和報表中的數據集名稱一致
   ReportDataSource rdsItem = new ReportDataSource("DataSet1", dt);
   //此處可以有多個數據源
   this.rptView.LocalReport.DataSources.Add(rdsItem);
   //第四步:構造參數
   List<ReportParameter> lstParameter = new List<ReportParameter>() {
    new ReportParameter("Title",this.txtTitle.Text),
    new ReportParameter("Id",this.txtId.Text),
    new ReportParameter("Name",this.txtName.Text),
    new ReportParameter("Age",this.txtAge.Text),
    new ReportParameter("Sex",this.txtSex.Text),
    new ReportParameter("Salary",this.txtSalary.Text),
    new ReportParameter("Depart",this.txtDepart.Text)
   };
   this.rptView.LocalReport.SetParameters(lstParameter);
   this.rptView.ZoomMode = ZoomMode.Percent;
   this.rptView.ZoomPercent = 100;
   //第五步:刷新報表
   this.rptView.RefreshReport();
  }

源碼下載鏈接

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

邛崃市| 长海县| 九寨沟县| 霍州市| 时尚| 汉源县| 冷水江市| 上高县| 泗洪县| 宕昌县| 饶河县| 甘孜| 海林市| 资源县| 商洛市| 淮南市| 那坡县| 平凉市| 塔城市| 博客| 东乡| 都兰县| 八宿县| 三都| 蒙山县| 嘉善县| 海伦市| 昌平区| 成安县| 铜梁县| 湘潭县| 铜山县| 噶尔县| 兰西县| 略阳县| 长垣县| 福海县| 柘荣县| 年辖:市辖区| 张掖市| 邓州市|