private void grdvProjectList_CustomDrawGroupRow(object sender, DevExpress.XtraGrid.Views.Base.RowObjectCustomDrawEventArgs e)
{
GridView view = sender as GridView;
DevExpress.XtraGrid.Views.Grid.ViewInfo.GridGroupRowInfo info =
e.Info as DevExpress.XtraGrid.Views.Grid.ViewInfo.GridGroupRowInfo;
int handle = view.GetDataRowHandleByGroupRowHandle(e.RowHandle);
if (info.Column.FieldName == "PRJ_NO")
{
StringBuilder oGroupText = new StringBuilder();
oGroupText.Append(view.GetRowCellValue(handle, "PRJ_NO").ToString());
oGroupText.Append(" - ");
oGroupText.Append(view.GetRowCellValue(handle, "PRJ_NAME").ToString());
info.GroupText = oGroupText.ToString();
}
}