• cxgrid动态多表头


    function TForm15.CreateBand(View: TcxGridDBBandedTableView;
      BandCaption, ParentBandCaption: String): TcxGridBand;
    var
      band: TcxGridBand;
    begin
      Result := nil;
      if View = nil then exit;
      if ParentBandCaption <> '' then
        band := FMyList.Objects[FMyList.IndexOf(ParentBandCaption)] as TcxGridBand;
      Result := view.Bands.Add;
      with Result do
      begin
        Caption := BandCaption;
        if (BandCaption <> '') and (ParentBandCaption <> '') and (BandCaption <> ParentBandCaption) then
        begin
          Position.ColIndex := band.ColumnCount + 1;
          Position.BandIndex := band.Index;
        end else if (BandCaption = '') and (ParentBandCaption = '') then
        begin
          Position.ColIndex := FRootBandCount + 1;
          Position.BandIndex := -1;
          FMyBand := Result;
        end else begin
          Position.ColIndex := FRootBandCount + 1;
          Position.BandIndex := -1;
        end;
      end;
    end;
    function TForm15.CreateCol(View: TcxGridDBBandedTableView; FieldName: string;
      BandCaption: string): TcxGridDBBandedColumn;
    var
      band: TcxGridBand;
    begin
      result := nil;
      if View = nil then Exit;
      if FieldName = '' then exit;
      if BandCaption = '' then Exit;
      band := FMyList.Objects[FMyList.IndexOf(BandCaption)] as TcxGridBand;
      Result := View.CreateColumn;
      with Result do
      begin
        DataBinding.FieldName := FieldName;
        Position.ColIndex := band.ColumnCount + 1;
        Position.BandIndex := band.Index;
      end;
    end;
  • 相关阅读:
    选择排序
    冒泡排序
    java多线程
    Java中的内存泄露的几种可能
    "==" 与 “equals”
    保证service不被杀死的方法
    反射、注解、依赖
    引导页
    适配:px与dp转换
    四 主要的几种 Web 服务器
  • 原文地址:https://www.cnblogs.com/hnxxcxg/p/2940581.html
Copyright © 2020-2023  润新知