0

我正在尝试在运行时将样式应用于 XE4 FM Stringgrid,但找不到正确的语法来执行此操作。

StringGrid 已经继承了我在设计时创建的'TextCellStyle'(默认值),并根据此样式显示 stringgrid 中的单元格。

理想情况下,我想做的是在运行时更改特定单元格中字体的颜色(负=红色,正=绿色等),但无法弄清楚如何执行此操作,因为我无法在单元格级别访问 Stylelookup .

请记住,此查询与 TStringGrid 相关,而不是 TGrid,因为我们的应用程序要求我们在运行时动态地为网格分配内存,而使用 stringgrid 则要容易得多。

任何帮助将不胜感激,并在此先感谢。

4

1 回答 1

0

我一直在尝试学习如何使用 TGrid 来做到这一点,感谢 Mike Sutton 的帮助,我成功地做到了这一点。

[有关背景,请参阅在 XE4 运行时更改 TTextCell 背景颜色。]

设法做到这一点后,我在 TStringGrid 上尝试了类似的逻辑,它运行良好。由于 stringgrid 不使用 Grid1GetValue,我只是将随机数硬编码到 FormCreate 中的网格中。

[在下面的代码中,我有一个名为 textcellstyle 的样式;在 textcellstyle 的“背景”组件中,我添加了一个 TRectangle,所以我可以调用 TRectangle 的“填充”属性。仍然不是样式的顶部,请参阅上面的链接。]

我的代码,以防万一:

    Procedure TForm1.FormCreate(Sender : TObject);

    begin
      { CREATE AN EXTRA COLUMN }
      StringGrid1.AddObject(TFinancialColumn.CreateStringGrid1));  
      { HARD-CODE THE ROWS }
      StringGrid1.Cells[0,0] :='0';
      StringGrid1.Cells[0,1] :='1';
      StringGrid1.Cells[0,2] :='2';
      StringGrid1.Cells[0,3] :='3';
      StringGrid1.Cells[0,4] :='4';
      StringGrid1.Cells[0,5] :='5';
      StringGrid1.Cells[0,6] :='6';
      StringGrid1.Cells[0,7] :='7';
      StringGrid1.Cells[0,8] :='8';
      StringGrid1.Cells[0,9] :='9';
      StringGrid1.Cells[0,10]:='10';
      { HARD-CODE A BUNCH OF NUMBERS. NOTE THAT HASH IN FRONT OF A NUMBER IS SIMPLY A  FLAG FOR IsImportant }
      StringGrid1.Cells[1,0] :='-10';
      StringGrid1.Cells[1,1] :='-6.86999999';
      StringGrid1.Cells[1,2] :='76.0999999';
      StringGrid1.Cells[1,3] :='#10.25';        
      StringGrid1.Cells[1,4] :='#17.2900006';
      StringGrid1.Cells[1,5] :='#57.1599993';
      StringGrid1.Cells[1,6] :='21.86000';
      StringGrid1.Cells[1,7] :='6.17';
      StringGrid1.Cells[1,8] :='27.219999';
      StringGrid1.Cells[1,9] :='#32.56000';
      StringGrid1.Cells[1,10]:='-1.7999';
    end;


    Function TFinancialColumn.CreateCellControl : TStyledControl;

    begin
      Result:=TFinancialCell.Create(Self);

      TTextCell(Result).OnTyping:=DoTextChanged;
      TTextCell(Result).OnExit  :=DoTextExit;
    end;

    Constructor TFinancialCell.Create(AOwner : TComponent);

    begin
      inherited;
      StyleLookup:='textcellstyle';
      StyledSettings:=StyledSettings-[TStyledSetting.ssStyle,TStyledSetting.ssFontColor]; { THIS LINE MUST BE HERE TO APPLY A NEW STYLE; IT CLEARS THE 'DEFAULT' STYLE SETTINGS }
      TextAlign:=TTextAlign.taTrailing;
    end;

    Procedure TFinancialCell.SetData(const Value          : TValue);

    var 
      F                                                   : Single;
      O                                                   : TFMXObject;
      S                                                   : String;

    begin
      S:=Value.AsString;

      If Length(S)>1 then 
      begin 
        FIsImportant:=S[1]='#';
        If IsImportant then
          S:=Copy(Value.AsString,2,MaxInt)
        else
          S:=Value.AsString;

        F:=StrToFloat(S);
        inherited SetData(Format('%n',[F]));
        FIsNegative:=F<0;

        ApplyStyling;
      end;  
    end;

    Procedure TFinancialCell.ApplyStyle;

    var 
      T                                                   : TFMXObject;

    begin
      inherited;

      T:=FindStyleResource('rectangle1');

      If T is TRectangle then
      begin 
        If IsNegative then 
        begin
          TRectangle(T).Fill.Color:=claRed; 
        end;  
      end;

      ApplyStyling;
    end;

    Procedure TFinancialCell.ApplyStyling;

    var 
      T                                                   : TFMXObject;

    begin
      If IsNegative then
        FontColor:=claBlack
      else
        FontColor:=claGreen;

      If IsImportant then Font.Style:=[TFontStyle.fsItalic,TFontStyle.fsBold]; { REPEAT THE ITALIC ELSE IT WILL ONLY BE BOLD, IE IT OVERWRITES THE ITALIC WITH BOLD }

      If Assigned(Font.OnChanged) then
        Font.OnChanged(Font);

      Repaint;
    end;

此代码在重新设置字体和背景样式方面起作用。任何改进上述内容的建议都非常受欢迎,但希望这会有所帮助。

但是,一旦您开始滚动,样式就会崩溃,但还没有弄清楚如何解决这个问题。任何建议都将受到欢迎!

于 2013-05-17T14:12:19.623 回答