信创国产化如何推动技术自主创新与安全保障的未来发展
625
2022-10-27
DEV Gridcontrol 查询得到0条记录时显示自定义的字符提示/显示
private void gridView_CustomDrawEmptyForeground(object sender, DevExpress.XtraGrid.Views.Base.CustomDrawEventArgs e) { if (this.judge_ds(dsDt)) { string str = "没有查询到你所想要的数据!"; Font f = new Font("宋体", 10, FontStyle.Bold); Rectangle r = new Rectangle(e.Bounds.Top + 25, e.Bounds.Left + 25, e.Bounds.Right - 25, e.Bounds.Height - 25); e.Graphics.DrawString(str, f, Brushes.Black, r); } }
#region 判断ds是否为空 private bool judge_ds(DataSet ds) { bool flag = false; if (ds == null||ds.Tables.Count == 0||(ds.Tables.Count == 1 && ds.Tables[0].Rows.Count == 0)) { flag = true; } return flag; } #endregion
小注:
如果显示提示信息的位置不对可以通过调整,Rectangle函数后面的数字来实现。
作者:jiankunking
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~