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

  • 相关阅读:
    韩式英语
    Daily dictation 听课笔记
    words with same pronunciation
    you will need to restart eclipse for the changes to take effect. would you like to restart now?
    glottal stop(britain fountain mountain)
    education 的发音
    第一次用Matlab 的lamada语句
    SVN的switch命令
    String的split
    SVN模型仓库中的资源从一个地方移动到另一个地方的办法(很久才解决)
  • 原文地址:https://www.cnblogs.com/zhangzhifeng/p/3103122.html
Copyright © 2011-2022 走看看