C#如何利用ReportViewer生成報(bào)表?這篇文章運(yùn)用了實(shí)例代碼展示,代碼非常詳細(xì),可供感興趣的小伙伴們參考借鑒,希望對(duì)大家有所幫助。
創(chuàng)新互聯(lián)專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于網(wǎng)站制作、做網(wǎng)站、楚雄州網(wǎng)絡(luò)推廣、微信小程序、楚雄州網(wǎng)絡(luò)營(yíng)銷、楚雄州企業(yè)策劃、楚雄州品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運(yùn)營(yíng)等,從售前售中售后,我們都將竭誠(chéng)為您服務(wù),您的肯定,是我們最大的嘉獎(jiǎng);創(chuàng)新互聯(lián)為所有大學(xué)生創(chuàng)業(yè)者提供楚雄州建站搭建服務(wù),24小時(shí)服務(wù)熱線:18980820575,官方網(wǎng)址:www.cdcxhl.com
涉及知識(shí)點(diǎn):
ReportViewer :位于Microsoft.Reporting.WinForms命名空間, 主要用于報(bào)表的顯示
Report:報(bào)表,以rdlc結(jié)尾的文件,可視化設(shè)計(jì)報(bào)表模板。
報(bào)表數(shù)據(jù):內(nèi)置字段,參數(shù),圖像,數(shù)據(jù)集(本報(bào)表主要使用參數(shù),和數(shù)據(jù)集)
ReportParameter:使用名稱和值實(shí)例化新的報(bào)表參數(shù)
ReportDataSource:報(bào)表的數(shù)據(jù)源與DataTable對(duì)象聯(lián)系起來
效果圖如下:
相關(guān)代碼如下:
////// 設(shè)置報(bào)表 /// private void SetReport() { //第一步:清除之前的數(shù)據(jù) this.rptView.LocalReport.DataSources.Clear(); //第二步:指定報(bào)表路徑 this.rptView.LocalReport.ReportPath = "Report2.rdlc"; //第三步:構(gòu)造新的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[] { "數(shù)學(xué)", 75, "S0001" }); dt.Rows.Add(new object[] { "英文", 96, "E0001" }); //名稱不能寫錯(cuò),和報(bào)表中的數(shù)據(jù)集名稱一致 ReportDataSource rdsItem = new ReportDataSource("DataSet1", dt); //此處可以有多個(gè)數(shù)據(jù)源 this.rptView.LocalReport.DataSources.Add(rdsItem); //第四步:構(gòu)造參數(shù) ListlstParameter = new List () { 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; //第五步:刷新報(bào)表 this.rptView.RefreshReport(); }
關(guān)于ReportViewer生成報(bào)表就分享到這里了,解決問題并不止文章中和大家分析的辦法,不過本文分析的方法準(zhǔn)確性是不容置疑的。如果喜歡本篇文章,不妨把它分享出去讓更多的人看到。