自画cxGrid表格(类封装)

本文介绍了一种使用DevExpress VCL库定制CxGrid的方法,通过创建TMyCxGrid类并实现CustomDrawCell过程来绘制额外的空白行,使表格在没有足够数据填充时保持统一的外观。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

unit UnitDevExpressVCLCustom;

interface

uses
  cxGrid, cxGridTableView, cxGridDBBandedTableView, Winapi.Windows, System.SysUtils, System.Variants, cxClasses,
  System.Classes, Vcl.Graphics, cxGraphics, cxLookAndFeels, cxLookAndFeelPainters, cxCustomData, cxTextEdit, cxEdit,
  cxCheckBox, Vcl.Controls, Vcl.Dialogs, cxGridDBTableView, cxGridCustomTableView, cxGridCustomView;

type
  TMyCxGrid = class(TCxGrid)
  private
    { Private declarations }
    //变量
    cxGridDBTableView: TcxGridDBTableView;
    //储存过程和函数
    procedure CustomDrawCell(Sender: TcxCustomGridTableView; ACanvas: TcxCanvas;
      AViewInfo: TcxGridTableDataCellViewInfo;
      var ADone: Boolean);
  public
    { Public declarations }
  end;

procedure IniMyCxGrid(cxGridDBBandedTableView: TcxGridDBBandedTableView; cxGridDBTableView: TcxGridDBTableView);

implementation

procedure TMyCxGrid.CustomDrawCell(Sender: TcxCustomGridTableView; ACanvas: TcxCanvas;
  AViewInfo: TcxGridTableDataCellViewInfo;
  var ADone: Boolean);
var
  I: Integer;
  lMaxRow: Integer;
  Rect1: TRect;
  ABorder: TcxBorder;
begin
  ACanvas.FillRect(AViewInfo.Bounds);
  ACanvas.DrawText(AViewInfo.GridRecord.DisplayTexts[AViewInfo.Item.Index], AViewInfo.Bounds, cxAlignHCenter);
  //计算最多画多少行
  lMaxRow := AViewInfo.GridViewInfo.NoDataInfoTextAreaBounds.Bottom - AViewInfo.GridViewInfo.NoDataInfoTextAreaBounds.Top mod AViewInfo.Bounds.Bottom - AViewInfo.Bounds.Top + 2;
  if AViewInfo.GridRecord.Index = cxGridDBTableView.ViewData.RecordCount - 1 then
    begin
      for i := cxGridDBTableView.ViewData.RecordCount + 1 to lMaxRow do
        begin
          //画表格
          Rect1.Top := AViewInfo.Bounds.Top - 1 + (AViewInfo.Bounds.Bottom - AViewInfo.Bounds.Top) * (i - cxGridDBTableView.ViewData.RecordCount);
          Rect1.Bottom := AViewInfo.Bounds.Bottom + (AViewInfo.Bounds.Bottom - AViewInfo.Bounds.Top) * (i - cxGridDBTableView.ViewData.RecordCount);
          Rect1.Left := AViewInfo.Bounds.Left - 1;
          Rect1.Right := AViewInfo.Bounds.Right + 1;

          if AViewInfo.GridView.Styles.Content <> nil then
            ACanvas.Brush.Color := AViewInfo.GridView.Styles.Content.Color
          else
            ACanvas.Brush.Color := clWhite;

          if (i mod 2) = 0 then
            if AViewInfo.GridView.Styles.ContentOdd <> nil then
              ACanvas.Brush.Color := AViewInfo.GridView.Styles.ContentOdd.Color
            else if AViewInfo.GridView.Styles.ContentEven <> nil then
              ACanvas.Brush.Color := AViewInfo.GridView.Styles.ContentEven.Color;

          ACanvas.FillRect(Rect1);
          ACanvas.Brush.Color := AViewInfo.BorderColor[ABorder];
          ACanvas.FrameRect(Rect1);
          AViewInfo.GridViewInfo.Painter.ExcludeFromBackground(Rect1);
        end;
    end;
end;

{-------------------------------------------------------------------------------
  作者:      曾聪
  日期:      2013.10.07
  过程名:    IniMyCxGrid
  功能:      调用TMyCxGrid相关函数初始化CxGrid
  参数:      
  返回值:    无
  说明:
-------------------------------------------------------------------------------}

procedure IniMyCxGrid(cxGridDBTableView: TcxGridDBTableView);
var
  MyCxGrid: TMyCxGrid;
begin
  MyCxGrid := TMyCxGrid.Create(nil);;
  MyCxGrid.cxGridDBTableView := cxGridDBTableView;
  if cxGridDBTableView <> nil then
    begin
      cxGridDBTableView.OnCustomDrawCell := MyCxGrid.CustomDrawCell; //调用自画表格函数
      cxGridDBTableView.Site.Cursor := crHandPoint; //改变鼠标手势
    end;
end;

end.


procedure TFormMainOperation.FormCreate(Sender: TObject);
begin
  IniMyCxGrid(cxgrddbtv1, nil);
end;


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值