zoukankan      html  css  js  c++  java
  • cxTreeList添加行号转载

    cxTreeList添加行号(2011-11-17 15:59:38)转载
    与cxGrid添加行号类似:

    1.将TcxTreeList的OptionsView --> Indicator设置为true,另也可在这将indicatorWidth根据自己需要设置

    2.添加OnCustomDrawIndicatorCell事件:

    procedure TFTest.qtxmListCustomDrawIndicatorCell(Sender: TcxCustomTreeList;
      ACanvas: TcxCanvas; AViewInfo: TcxTreeListIndicatorCellViewInfo;
      var ADone: Boolean);
    var
      AIndicatorViewInfo: TcxTreeListIndicatorCellViewInfo;
      ATextRect: TRect;
      aCV:TcxCanvas;
    begin
      inherited;
      if not (AViewInfo is TcxTreeListIndicatorCellViewInfo) then Exit;
      aCV:=ACanvas ;
      ATextRect:=AViewInfo.TextBounds;
      AIndicatorViewInfo := AViewInfo as TcxTreeListIndicatorCellViewInfo;
      InflateRect(ATextRect, -2, -1);
      if AIndicatorViewInfo.Node=nil then exit;
      Sender.LookAndFeel.Painter.DrawHeader(ACanvas, AViewInfo.TextBounds,
        ATextRect, [], cxBordersAll, cxbsNormal, taCenter, TcxAlignmentVert(vaCenter),
        False, False, IntToStr(AIndicatorViewInfo.Node.AbsoluteIndex + 1),
        acv.Font,acv.font.Color,acv.Brush.Color);
      ADone := True;
    end;

    请引用cxClasses这个单元

    procedure Tfrm_MainIPC.dxGrd_Component2CustomDrawIndicatorCell(
    Sender: TObject; ACanvas: TcxCanvas;
    AViewInfo: TcxTreeListIndicatorViewInfo; var ADone: Boolean);
    var
    // AIndicatorViewInfo: TcxTreeListIndicatorCellViewInfo;
    AIndicatorViewInfo: TcxTreeListIndicatorViewInfo;
    ATextRect: TRect;
    aCV:TcxCanvas;
    begin
    inherited;
    if not (AViewInfo is TcxTreeListIndicatorViewInfo) then Exit;
    aCV:=ACanvas ;
    ATextRect:=AViewInfo.BoundsRect;
    AIndicatorViewInfo := AViewInfo as TcxTreeListIndicatorViewInfo;
    InflateRect(ATextRect, -2, -1);
    if AIndicatorViewInfo.Node=nil then exit;
    AViewInfo.LookAndFeelPainter.DrawHeader(ACanvas, AViewInfo.BoundsRect,
    ATextRect, [], cxBordersAll, cxbsNormal, taCenter, TcxAlignmentVert(vaCenter),
    False, False, IntToStr(AIndicatorViewInfo.Node.AbsoluteIndex + 1),
    acv.Font,acv.font.Color,acv.Brush.Color);
    // Sender.LookAndFeel.Painter.DrawHeader(ACanvas, AViewInfo.TextBounds,
    // ATextRect, [], cxBordersAll, cxbsNormal, taCenter, TcxAlignmentVert(vaCenter),
    // False, False, IntToStr(AIndicatorViewInfo.Node.AbsoluteIndex + 1),
    // acv.Font,acv.font.Color,acv.Brush.Color);
    ADone := True;
    end;

    需要单元

    cxInplaceContainer,  dxCoreGraphics, dxOffice11

  • 相关阅读:
    mysql-5.7.16-linux-glibc2.5-x86_64精简后的主从配置
    solr安装
    ffmpeg安装
    saltstack之keepalived的安装配置
    saltstack之haproxy的安装配置
    saltstack1
    logstash运输器以及kibana的更多操作
    logstash编写2以及结合kibana使用
    logstash5.x安装及简单运用
    ELK之elasticsearch5.6的安装和head插件的安装
  • 原文地址:https://www.cnblogs.com/zhangzhifeng/p/3103122.html
Copyright © 2011-2022 走看看