GridView查询结果显示,处理最后一行合计字体大小
private void gridView2_RowStyle(object sender, DevExpress.XtraGrid.Views.Grid.RowStyleEventArgs e)
{
try
{
if (gridView2.GetDataRow(e.RowHandle) == null)
{
return;
}
if (e.RowHandle == this.dS_SMDFW02.TSMDF54.Rows.Count - 1
&& (this.tSMDF54EFDevGrid.InitRowOrdinal + this.tSMDF54EFDevGrid.PageSize >= this.tSMDF54EFDevGrid.TotalRecordCount))
{
e.Appearance.Font = new System.Drawing.Font("Tahoma", 10, FontStyle.Bold);
e.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
}
}
catch (Exception ex)
{
this.EFMsgInfo = ex.Message;
}
}

浙公网安备 33010602011771号