国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 編程 > C# > 正文

DevExpress實(shí)現(xiàn)GridView當(dāng)無(wú)數(shù)據(jù)行時(shí)提示消息

2020-01-24 02:34:25
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

本文實(shí)例展示了DevExpress實(shí)現(xiàn)GridView當(dāng)無(wú)數(shù)據(jù)行時(shí)提示消息的方法,具體步驟如下:

主要功能代碼部分如下:

/// <summary>/// 設(shè)置當(dāng)沒(méi)有數(shù)據(jù)行的提示信息『CustomDrawEmptyForeground』/// </summary>/// <param name="gridView">GridView</param>/// <param name="e">CustomDrawEventArgs</param>/// <param name="noRecordMsg">提示信息</param>public static void DrawNoRowCountMessage(this GridView gridView, CustomDrawEventArgs e, string noRecordMsg){  if (gridView == null) throw new ArgumentNullException("gridView");  if (gridView.RowCount == 0)  { if (!string.IsNullOrEmpty(noRecordMsg)) {   Font _font = new Font("宋體", 10, FontStyle.Bold);   Rectangle _r = new Rectangle(e.Bounds.Left + 5, e.Bounds.Top + 5, e.Bounds.Width - 5, e.Bounds.Height - 5);   e.Graphics.DrawString(noRecordMsg, _font, Brushes.Black, _r); }  }}

代碼使用方法如下:

private void gvLampTotal_CustomDrawEmptyForeground(object sender, DevExpress.XtraGrid.Views.Base.CustomDrawEventArgs e){  gvLampTotal.DrawNoRowCountMessage(e, "暫無(wú)符合的數(shù)據(jù)!");}

代碼運(yùn)行效果如下:

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 鄄城县| 临沭县| 贡嘎县| 神农架林区| 渑池县| 仪征市| 乌苏市| 琼结县| 屏山县| 芜湖县| 高要市| 兴城市| 东乌珠穆沁旗| 于都县| 金秀| 江北区| 全州县| 清河县| 沾化县| 马鞍山市| 和政县| 新疆| 荥阳市| 年辖:市辖区| 金乡县| 岳池县| 福鼎市| 垦利县| 芜湖市| 曲沃县| 龙州县| 成武县| 和硕县| 南投县| 茂名市| 安达市| 威信县| 墨玉县| 大埔区| 安康市| 大英县|