在Winform開發(fā)中使用Grid++報表

之前一直使用各種報表工具,如RDLC、DevExpress套件的XtraReport報表护昧,在之前一些隨筆也有介紹莫其,最近接觸銳浪的Grid++報表癞尚,做了一些測試例子和輔助類來處理報表內(nèi)容,覺得還是很不錯的乱陡,特別是它的作者提供了很多報表的設(shè)計模板案例浇揩,功能還是非常強大的。試著用來做一些簡單的報表憨颠,測試下功能胳徽,發(fā)現(xiàn)常規(guī)的二維表、套打爽彤、條形碼二維碼等我關(guān)注的功能都有养盗,是一個比較強大的報表控件,本篇隨筆主要介紹在Winform開發(fā)中使用Grid++報表設(shè)計報表模板适篙,以及綁定數(shù)據(jù)的處理過程往核。

1、報表模板設(shè)計

這個報表系統(tǒng)嚷节,報表模板提供了很多案例聂儒,我們可以大概瀏覽下其功能蝶缀。

image

它對應(yīng)在相應(yīng)的文件目錄里面,我們可以逐一查看了解下薄货,感覺提供這么多報表還是很贊的翁都,我們可以參考著來用,非常好谅猾。

image

整個報表主要是基于現(xiàn)有數(shù)據(jù)進行一個報表的模板設(shè)計的沼溜,如果要預(yù)覽效果冗美,我們一般是需要綁定現(xiàn)有的數(shù)據(jù),可以從各種數(shù)據(jù)庫提供數(shù)據(jù)源,然后設(shè)計報表模板拳氢,進行實時的數(shù)據(jù)和格式查看及調(diào)整撵术。

空白的報表模板大概如下所示嚼黔,包含頁眉頁腳盖呼,以及明細表格的內(nèi)容。

image

根據(jù)它的教程弧岳,模仿著簡單的做了一個報表凳忙,也主要是設(shè)計報表格式的調(diào)整,和數(shù)據(jù)源的處理的關(guān)系禽炬,我們做一個兩個報表就可以很快上手了涧卵。

為了動態(tài)的加入我們表格所需要的列,我們可以通過數(shù)據(jù)庫里面的字段進行加入腹尖,首先提供數(shù)據(jù)源柳恐,指定我們具體的表即可(如果是自定義的信息,則可以手工添加字段)

image

這個里面就是配置不同的數(shù)據(jù)庫數(shù)據(jù)源了

image

如SQLServer數(shù)據(jù)庫的配置信息如下热幔。

image

為了方便乐设,我們可以利用案例的Access數(shù)據(jù)庫,也就是Northwind.mdb來測試我們的報表绎巨,弄好這些我們指定對應(yīng)的數(shù)據(jù)表數(shù)據(jù)即可近尚。

image

這里面配置好數(shù)據(jù)庫表信息后,我們就可以用它生成相關(guān)的字段和對應(yīng)的列信息了

image

修改列的表頭认烁,讓它符合中文的表頭列肿男,如下所示。

image

我們在頁腳出却嗡,加入了打印時間,頁碼的一些系統(tǒng)變量嘹承,具體操作就是添加一個綜合文本窗价,然后在內(nèi)容里面插入指定的域內(nèi)容即可,如下所示

image

預(yù)覽報表叹卷,我們就可以看到具體的報表格式顯示了撼港。

image

通過上面的操作坪它,感覺生成一個報表還是很方便的,接著我有根據(jù)需要做了一個二維碼的報表顯示帝牡,方便打印資產(chǎn)標簽往毡。

image

綁定數(shù)據(jù)源顯示的報表視圖如下所示,看起來還是蠻好的靶溜。

image

2开瞭、數(shù)據(jù)綁定

一般我們綁定數(shù)據(jù)源,有的時候可以直接指定數(shù)據(jù)庫連接罩息,有時候可以綁定具體的數(shù)據(jù)列表嗤详,如DataTable或者List<T>這樣的數(shù)據(jù)源,不同的方式報表控件的代碼綁定不同瓷炮。

直接綁定數(shù)據(jù)表的路徑如下所示葱色。

        /// <summary>
        /// 普通連接數(shù)據(jù)庫的例子-打印預(yù)覽
        /// </summary>
        private void btnNormalDatabase_Click(object sender, EventArgs e)
        {
            Report = new GridppReport();
            string reportPath = Path.Combine(Application.StartupPath, "Reports\\testgrid++.grf");
            string dbPath = Path.Combine(Application.StartupPath, "Data\\NorthWind.mdb");

            //從對應(yīng)文件中載入報表模板數(shù)據(jù)
            Report.LoadFromFile(reportPath);
            //設(shè)置與數(shù)據(jù)源的連接串,因為在設(shè)計時指定的數(shù)據(jù)庫路徑是絕對路徑娘香。
            if (Report.DetailGrid != null)
            {
                string connstr = Utility.GetDatabaseConnectionString(dbPath);
                Report.DetailGrid.Recordset.ConnectionString = connstr;
            }

            Report.PrintPreview(true);
        }

而如果需要綁定和數(shù)據(jù)庫無關(guān)的動態(tài)數(shù)據(jù)源苍狰,那么就需要通過控件的FetchRecord進行處理了,如下代碼所示烘绽。

Report.FetchRecord += new _IGridppReportEvents_FetchRecordEventHandler(ReportFetchRecord);

通過這樣我們增加每一個對應(yīng)的列單元格信息舞痰,如下是隨帶案例所示


        //在C#中一次填入一條記錄不能成功,只能使用一次將記錄全部填充完的方式
        private void ReportFetchRecord()
        {
            //將全部記錄一次填入
            Report.DetailGrid.Recordset.Append();
            FillRecord1();
            Report.DetailGrid.Recordset.Post();

            Report.DetailGrid.Recordset.Append();
            FillRecord2();
            Report.DetailGrid.Recordset.Post();

            Report.DetailGrid.Recordset.Append();
            FillRecord3();
            Report.DetailGrid.Recordset.Post();
        }

        private void FillRecord1()
        {
            C1Field.AsString = "A";
            I1Field.AsInteger = 1;
            F1Field.AsFloat = 1.01;
        }

        private void FillRecord2()
        {
            C1Field.AsString = "B";
            I1Field.AsInteger = 2;
            F1Field.AsFloat = 1.02;
        }

        private void FillRecord3()
        {
            C1Field.AsString = "C";
            I1Field.AsInteger = 3;
            F1Field.AsFloat = 1.03;
        }

這樣處理肯定很麻煩诀姚,我們常規(guī)做法是弄一個輔助類响牛,來處理DataTable和List<T>等這樣類型數(shù)據(jù)的動態(tài)增加操作。

        /// <summary>
        /// 綁定實體類集合的例子-打印預(yù)覽
        /// </summary>
        private void btnBindList_Click(object sender, EventArgs e)
        {
            Report = new GridppReport();
            //從對應(yīng)文件中載入報表模板數(shù)據(jù)
            string reportPath = Path.Combine(Application.StartupPath, "Reports\\testList.grf");
            Report.LoadFromFile(reportPath);
            Report.FetchRecord += ReportList_FetchRecord;

            Report.PrintPreview(true);
        }
        /// <summary>
        /// 綁定DataTable的例子-打印預(yù)覽
        /// </summary>
        private void btnBindDatatable_Click(object sender, EventArgs e)
        {
            Report = new GridppReport();
            //從對應(yīng)文件中載入報表模板數(shù)據(jù)
            string reportPath = Path.Combine(Application.StartupPath, "Reports\\testList.grf");
            Report.LoadFromFile(reportPath);
            Report.FetchRecord += ReportList_FetchRecord2;

            Report.PrintPreview(true);
        }

        private void ReportList_FetchRecord()
        {
            List<ProductInfo> list = BLLFactory<Product>.Instance.GetAll();
            GridReportHelper.FillRecordToReport<ProductInfo>(Report, list);
        }
        private void ReportList_FetchRecord2()
        {
            var dataTable = BLLFactory<Product>.Instance.GetAllToDataTable();
            GridReportHelper.FillRecordToReport(Report, dataTable);
        }

其中輔助類 GridReportHelper 代碼如下所示赫段。

    /// <summary>
    /// Gird++報表的輔助類
    /// </summary>
    public class GridReportHelper
    {
        private struct MatchFieldPairType
        {
            public IGRField grField;
            public int MatchColumnIndex;
        }

        /// <summary>
        /// 將 DataReader 的數(shù)據(jù)轉(zhuǎn)儲到 Grid++Report 的數(shù)據(jù)集中
        /// </summary>
        /// <param name="Report">報表對象</param>
        /// <param name="dr">DataReader對象</param>
        public static void FillRecordToReport(IGridppReport Report, IDataReader dr)
        {
            MatchFieldPairType[] MatchFieldPairs = new MatchFieldPairType[Math.Min(Report.DetailGrid.Recordset.Fields.Count, dr.FieldCount)];

            //根據(jù)字段名稱與列名稱進行匹配呀打,建立DataReader字段與Grid++Report記錄集的字段之間的對應(yīng)關(guān)系
            int MatchFieldCount = 0;
            for (int i = 0; i < dr.FieldCount; ++i)
            {
                foreach (IGRField fld in Report.DetailGrid.Recordset.Fields)
                {
                    if (string.Compare(fld.RunningDBField, dr.GetName(i), true) == 0)
                    {
                        MatchFieldPairs[MatchFieldCount].grField = fld;
                        MatchFieldPairs[MatchFieldCount].MatchColumnIndex = i;
                        ++MatchFieldCount;
                        break;
                    }
                }
            }

            // 將 DataReader 中的每一條記錄轉(zhuǎn)儲到Grid++Report 的數(shù)據(jù)集中去
            while (dr.Read())
            {
                Report.DetailGrid.Recordset.Append();
                for (int i = 0; i < MatchFieldCount; ++i)
                {
                    var columnIndex = MatchFieldPairs[i].MatchColumnIndex;
                    if (!dr.IsDBNull(columnIndex))
                    {
                        MatchFieldPairs[i].grField.Value = dr.GetValue(columnIndex);
                    }
                }
                Report.DetailGrid.Recordset.Post();
            }
        }

        /// <summary>
        /// 將 DataTable 的數(shù)據(jù)轉(zhuǎn)儲到 Grid++Report 的數(shù)據(jù)集中
        /// </summary>
        /// <param name="Report">報表對象</param>
        /// <param name="dt">DataTable對象</param>
        public static void FillRecordToReport(IGridppReport Report, DataTable dt)
        {
            MatchFieldPairType[] MatchFieldPairs = new MatchFieldPairType[Math.Min(Report.DetailGrid.Recordset.Fields.Count, dt.Columns.Count)];

            //根據(jù)字段名稱與列名稱進行匹配,建立DataReader字段與Grid++Report記錄集的字段之間的對應(yīng)關(guān)系
            int MatchFieldCount = 0;
            for (int i = 0; i < dt.Columns.Count; ++i)
            {
                foreach (IGRField fld in Report.DetailGrid.Recordset.Fields)
                {
                    if (string.Compare(fld.Name, dt.Columns[i].ColumnName, true) == 0)
                    {
                        MatchFieldPairs[MatchFieldCount].grField = fld;
                        MatchFieldPairs[MatchFieldCount].MatchColumnIndex = i;
                        ++MatchFieldCount;
                        break;
                    }
                }
            }

            // 將 DataTable 中的每一條記錄轉(zhuǎn)儲到 Grid++Report 的數(shù)據(jù)集中去
            foreach (DataRow dr in dt.Rows)
            {
                Report.DetailGrid.Recordset.Append();
                for (int i = 0; i < MatchFieldCount; ++i)
                {
                    var columnIndex = MatchFieldPairs[i].MatchColumnIndex;
                    if (!dr.IsNull(columnIndex))
                    {
                        MatchFieldPairs[i].grField.Value = dr[columnIndex];
                    }
                }
                Report.DetailGrid.Recordset.Post();
            }
        }

        /// <summary>
        /// List加載數(shù)據(jù)集
        /// </summary>
        /// <typeparam name="T"></typeparam>
        /// <param name="Report">報表對象</param>
        /// <param name="list">列表數(shù)據(jù)</param>
        public static void FillRecordToReport<T>(IGridppReport Report, List<T> list)
        {
            Type type = typeof(T);  //反射類型             

            MatchFieldPairType[] MatchFieldPairs = new MatchFieldPairType[Math.Min(Report.DetailGrid.Recordset.Fields.Count, type.GetProperties().Length)];

            //根據(jù)字段名稱與列名稱進行匹配糯笙,建立字段與Grid++Report記錄集的字段之間的對應(yīng)關(guān)系
            int MatchFieldCount = 0;
            int i = 0;
            MemberInfo[] members = type.GetMembers();
            foreach (MemberInfo memberInfo in members)
            {
                foreach (IGRField fld in Report.DetailGrid.Recordset.Fields)
                {
                    if (string.Compare(fld.Name, memberInfo.Name, true) == 0)
                    {
                        MatchFieldPairs[MatchFieldCount].grField = fld;
                        MatchFieldPairs[MatchFieldCount].MatchColumnIndex = i;
                        ++MatchFieldCount;
                        break;
                    }
                }
                ++i;
            }
            
            // 將 DataTable 中的每一條記錄轉(zhuǎn)儲到 Grid++Report 的數(shù)據(jù)集中去
            foreach (T t in list)
            {
                Report.DetailGrid.Recordset.Append();
                for (i = 0; i < MatchFieldCount; ++i)
                {
                    object objValue = GetPropertyValue(t, MatchFieldPairs[i].grField.Name);
                    if (objValue != null)
                    {
                        MatchFieldPairs[i].grField.Value = objValue;
                    }
                }
                Report.DetailGrid.Recordset.Post();
            }
        }

        /// <summary>
        /// 獲取對象實例的屬性值
        /// </summary>
        /// <param name="obj">對象實例</param>
        /// <param name="name">屬性名稱</param>
        /// <returns></returns>
        public static object GetPropertyValue(object obj, string name)
        {
            //這個無法獲取基類
            //PropertyInfo fieldInfo = obj.GetType().GetProperty(name, bf);
            //return fieldInfo.GetValue(obj, null);

            //下面方法可以獲取基類屬性
            object result = null;
            foreach (PropertyDescriptor prop in TypeDescriptor.GetProperties(obj))
            {
                if (prop.Name == name)
                {
                    result = prop.GetValue(obj);
                }
            }
            return result;
        }
    }

綁定數(shù)據(jù)的報表效果如下所示

image

導(dǎo)出報表為PDF也是比較常規(guī)的操作贬丛,這個報表控件也可以實現(xiàn)PDF等格式文件的導(dǎo)出,如下所示给涕。

        private void btnExportPdf_Click(object sender, EventArgs e)
        {
            List<ProductInfo> list = BLLFactory<Product>.Instance.GetAll();

            //從對應(yīng)文件中載入報表模板數(shù)據(jù)
            string reportPath = Path.Combine(Application.StartupPath, "Reports\\testList.grf");
            GridExportHelper helper = new GridExportHelper(reportPath);

            string fileName = "d:\\my.pdf";
            var succeeded = helper.ExportPdf(list, fileName);
            if(succeeded)
            {
                Process.Start(fileName);
            }
        }
image

以上就是利用這個報表控件做的一些功能測試和輔助類封裝豺憔,方便使用。

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末够庙,一起剝皮案震驚了整個濱河市恭应,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌耘眨,老刑警劉巖昼榛,帶你破解...
    沈念sama閱讀 207,113評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異剔难,居然都是意外死亡胆屿,警方通過查閱死者的電腦和手機奥喻,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,644評論 2 381
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來非迹,“玉大人环鲤,你說我怎么就攤上這事≡魇蓿” “怎么了冷离?”我有些...
    開封第一講書人閱讀 153,340評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長唇兑。 經(jīng)常有香客問我酒朵,道長,這世上最難降的妖魔是什么扎附? 我笑而不...
    開封第一講書人閱讀 55,449評論 1 279
  • 正文 為了忘掉前任蔫耽,我火速辦了婚禮,結(jié)果婚禮上留夜,老公的妹妹穿的比我還像新娘匙铡。我一直安慰自己,他們只是感情好碍粥,可當我...
    茶點故事閱讀 64,445評論 5 374
  • 文/花漫 我一把揭開白布鳖眼。 她就那樣靜靜地躺著,像睡著了一般嚼摩。 火紅的嫁衣襯著肌膚如雪钦讳。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,166評論 1 284
  • 那天枕面,我揣著相機與錄音愿卒,去河邊找鬼。 笑死潮秘,一個胖子當著我的面吹牛琼开,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播枕荞,決...
    沈念sama閱讀 38,442評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼柜候,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了躏精?” 一聲冷哼從身側(cè)響起渣刷,我...
    開封第一講書人閱讀 37,105評論 0 261
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎玉控,沒想到半個月后飞主,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,601評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡高诺,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,066評論 2 325
  • 正文 我和宋清朗相戀三年碌识,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片虱而。...
    茶點故事閱讀 38,161評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡筏餐,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出牡拇,到底是詐尸還是另有隱情魁瞪,我是刑警寧澤,帶...
    沈念sama閱讀 33,792評論 4 323
  • 正文 年R本政府宣布惠呼,位于F島的核電站导俘,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏剔蹋。R本人自食惡果不足惜旅薄,卻給世界環(huán)境...
    茶點故事閱讀 39,351評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望泣崩。 院中可真熱鬧少梁,春花似錦、人聲如沸矫付。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,352評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽买优。三九已至妨马,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間杀赢,已是汗流浹背烘跺。 一陣腳步聲響...
    開封第一講書人閱讀 31,584評論 1 261
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留葵陵,地道東北人液荸。 一個月前我還...
    沈念sama閱讀 45,618評論 2 355
  • 正文 我出身青樓,卻偏偏與公主長得像脱篙,于是被迫代替她去往敵國和親娇钱。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 42,916評論 2 344

推薦閱讀更多精彩內(nèi)容